Project: Predicting the outcome of Football Matches

Table of Contents

Introduction

The goal of this project is to predict the outcomes of football matches more accurately than book-keepers, thereby beating the odds and to possibly, in the end, generate a betting model that results in a positive return on investment. Based on the datasets provided on kaggle which include basic match data, FIFA player statistics and book-keeper data, I will build a model to predict the probability of each match outcome – home-win, draw, or away-win.

This notebook concentrates on the data-wrangling section (the most labor-intensive part) of the project which will cover the following aspects of the data:

  1. Gathering
  2. Assessing
  3. Cleaning

Data Wrangling

Gather

In [1]:
#Import statements for libraries needed for this project

import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
from datetime import date
import seaborn as sns
import calendar

#Show visualisations in the notebook
% matplotlib inline
In [2]:
#Set display options in order the inspect the data in the extensive datasets properly
#This increases the default display options seen when exploring the dataframes - printing with head() etc...

pd.set_option('display.max_rows', 2000)
pd.set_option('display.max_columns', 2000)
pd.set_option('display.width', 2000)

The main European Football database was stored in an SQLite database. I used the software 'DB Browser for SQLite' and the following SQL statements to extract the datasets I needed:

Matches

SELECT *
FROM Match m
JOIN League l
ON m.league_id = l.id
JOIN Country c
ON m.country_id = c.id
INNER JOIN Team as t1
ON m.home_team_api_id = t1.team_api_id
INNER JOIN Team as t2
ON m.away_team_api_id = t2.team_api_id;

Players

SELECT *
FROM Player_Attributes pa
JOIN Player p
ON p.player_api_id = pa.player_api_id;
In [3]:
#Import datasets

# +25,000 Football matches - Seasons 2008 to 2016.        
matches = pd.read_csv('main_matches.csv')

# +10,000 Football players ratings - Seasons 2008 to 2016
players_ratings = pd.read_csv('main_players.csv')

Assess

Assessing Matches

Visual Assessment: Acquainting Myself
In [4]:
#Visualize the first 5 rows of the dataset matches
matches.head()
Out[4]:
id country_id league_id season stage date match_api_id home_team_api_id away_team_api_id home_team_goal away_team_goal home_player_X1 home_player_X2 home_player_X3 home_player_X4 home_player_X5 home_player_X6 home_player_X7 home_player_X8 home_player_X9 home_player_X10 home_player_X11 away_player_X1 away_player_X2 away_player_X3 away_player_X4 away_player_X5 away_player_X6 away_player_X7 away_player_X8 away_player_X9 away_player_X10 away_player_X11 home_player_Y1 home_player_Y2 home_player_Y3 home_player_Y4 home_player_Y5 home_player_Y6 home_player_Y7 home_player_Y8 home_player_Y9 home_player_Y10 home_player_Y11 away_player_Y1 away_player_Y2 away_player_Y3 away_player_Y4 away_player_Y5 away_player_Y6 away_player_Y7 away_player_Y8 away_player_Y9 away_player_Y10 away_player_Y11 home_player_1 home_player_2 home_player_3 home_player_4 home_player_5 home_player_6 home_player_7 home_player_8 home_player_9 home_player_10 home_player_11 away_player_1 away_player_2 away_player_3 away_player_4 away_player_5 away_player_6 away_player_7 away_player_8 away_player_9 away_player_10 away_player_11 goal shoton shotoff foulcommit card cross corner possession B365H B365D B365A BWH BWD BWA IWH IWD IWA LBH LBD LBA PSH PSD PSA WHH WHD WHA SJH SJD SJA VCH VCD VCA GBH GBD GBA BSH BSD BSA id.1 country_id.1 name id.2 name.1 id.3 team_api_id team_fifa_api_id team_long_name team_short_name id.4 team_api_id.1 team_fifa_api_id.1 team_long_name.1 team_short_name.1
0 1 1 1 2008/2009 1 2008-08-17 00:00:00 492473 9987 9993 1 1 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 1.73 3.40 5.00 1.75 3.35 4.20 1.85 3.2 3.5 1.80 3.3 3.75 NaN NaN NaN 1.70 3.30 4.33 1.90 3.3 4.00 1.65 3.40 4.50 1.78 3.25 4.00 1.73 3.40 4.20 1 1 Belgium Jupiler League 1 Belgium 1 9987 673.0 KRC Genk GEN 2 9993 675.0 Beerschot AC BAC
1 2 1 1 2008/2009 1 2008-08-16 00:00:00 492474 10000 9994 0 0 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 1.95 3.20 3.60 1.80 3.30 3.95 1.90 3.2 3.5 1.90 3.2 3.50 NaN NaN NaN 1.83 3.30 3.60 1.95 3.3 3.80 2.00 3.25 3.25 1.85 3.25 3.75 1.91 3.25 3.60 1 1 Belgium Jupiler League 1 Belgium 3 10000 15005.0 SV Zulte-Waregem ZUL 4 9994 2007.0 Sporting Lokeren LOK
2 3 1 1 2008/2009 1 2008-08-16 00:00:00 492475 9984 8635 0 3 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2.38 3.30 2.75 2.40 3.30 2.55 2.60 3.1 2.3 2.50 3.2 2.50 NaN NaN NaN 2.50 3.25 2.40 2.63 3.3 2.50 2.35 3.25 2.65 2.50 3.20 2.50 2.30 3.20 2.75 1 1 Belgium Jupiler League 1 Belgium 5 9984 1750.0 KSV Cercle Brugge CEB 6 8635 229.0 RSC Anderlecht AND
3 4 1 1 2008/2009 1 2008-08-17 00:00:00 492476 9991 9998 5 0 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 1.44 3.75 7.50 1.40 4.00 6.80 1.40 3.9 6.0 1.44 3.6 6.50 NaN NaN NaN 1.44 3.75 6.00 1.44 4.0 7.50 1.45 3.75 6.50 1.50 3.75 5.50 1.44 3.75 6.50 1 1 Belgium Jupiler League 1 Belgium 7 9991 674.0 KAA Gent GEN 8 9998 1747.0 RAEC Mons MON
4 5 1 1 2008/2009 1 2008-08-16 00:00:00 492477 7947 9985 1 3 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 5.00 3.50 1.65 5.00 3.50 1.60 4.00 3.3 1.7 4.00 3.4 1.72 NaN NaN NaN 4.20 3.40 1.70 4.50 3.5 1.73 4.50 3.40 1.65 4.50 3.50 1.65 4.75 3.30 1.67 1 1 Belgium Jupiler League 1 Belgium 9 7947 NaN FCV Dender EH DEN 10 9985 232.0 Standard de Liège STL
In [5]:
#Visualize the last 5 rows of the dataset matches
matches.tail()
Out[5]:
id country_id league_id season stage date match_api_id home_team_api_id away_team_api_id home_team_goal away_team_goal home_player_X1 home_player_X2 home_player_X3 home_player_X4 home_player_X5 home_player_X6 home_player_X7 home_player_X8 home_player_X9 home_player_X10 home_player_X11 away_player_X1 away_player_X2 away_player_X3 away_player_X4 away_player_X5 away_player_X6 away_player_X7 away_player_X8 away_player_X9 away_player_X10 away_player_X11 home_player_Y1 home_player_Y2 home_player_Y3 home_player_Y4 home_player_Y5 home_player_Y6 home_player_Y7 home_player_Y8 home_player_Y9 home_player_Y10 home_player_Y11 away_player_Y1 away_player_Y2 away_player_Y3 away_player_Y4 away_player_Y5 away_player_Y6 away_player_Y7 away_player_Y8 away_player_Y9 away_player_Y10 away_player_Y11 home_player_1 home_player_2 home_player_3 home_player_4 home_player_5 home_player_6 home_player_7 home_player_8 home_player_9 home_player_10 home_player_11 away_player_1 away_player_2 away_player_3 away_player_4 away_player_5 away_player_6 away_player_7 away_player_8 away_player_9 away_player_10 away_player_11 goal shoton shotoff foulcommit card cross corner possession B365H B365D B365A BWH BWD BWA IWH IWD IWA LBH LBD LBA PSH PSD PSA WHH WHD WHA SJH SJD SJA VCH VCD VCA GBH GBD GBA BSH BSD BSA id.1 country_id.1 name id.2 name.1 id.3 team_api_id team_fifa_api_id team_long_name team_short_name id.4 team_api_id.1 team_fifa_api_id.1 team_long_name.1 team_short_name.1
25974 25975 24558 24558 2015/2016 9 2015-09-22 00:00:00 1992091 10190 10191 1 0 1.0 2.0 4.0 6.0 8.0 4.0 6.0 3.0 5.0 7.0 5.0 1.0 2.0 4.0 6.0 8.0 4.0 6.0 3.0 5.0 7.0 5.0 1.0 3.0 3.0 3.0 3.0 6.0 6.0 8.0 8.0 8.0 11.0 1.0 3.0 3.0 3.0 3.0 6.0 6.0 8.0 8.0 8.0 11.0 42231.0 678384.0 95220.0 638592.0 413155.0 45780.0 171229.0 67333.0 119839.0 143790.0 195215.0 462944.0 563066.0 8800.0 67304.0 158253.0 133126.0 186524.0 93223.0 121115.0 232110.0 289732.0 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 24558 24558 Switzerland Super League 24558 Switzerland 49479 10190 898.0 FC St. Gallen GAL 49837 10191 1715.0 FC Thun THU
25975 25976 24558 24558 2015/2016 9 2015-09-23 00:00:00 1992092 9824 10199 1 2 1.0 3.0 5.0 7.0 2.0 4.0 6.0 8.0 5.0 4.0 6.0 1.0 2.0 4.0 6.0 8.0 3.0 5.0 7.0 3.0 5.0 7.0 1.0 3.0 3.0 3.0 7.0 7.0 7.0 7.0 9.0 11.0 11.0 1.0 3.0 3.0 3.0 3.0 7.0 7.0 7.0 10.0 10.0 10.0 33272.0 41621.0 25813.0 257845.0 114735.0 42237.0 113227.0 358156.0 32343.0 531309.0 37257.0 42276.0 114792.0 150007.0 178119.0 27232.0 570830.0 260708.0 201704.0 36382.0 34082.0 95257.0 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 24558 24558 Switzerland Super League 24558 Switzerland 49122 9824 286.0 FC Vaduz VAD 49121 10199 897.0 FC Luzern LUZ
25976 25977 24558 24558 2015/2016 9 2015-09-23 00:00:00 1992093 9956 10179 2 0 1.0 2.0 4.0 6.0 8.0 4.0 6.0 3.0 5.0 7.0 5.0 1.0 2.0 4.0 6.0 8.0 4.0 6.0 3.0 5.0 7.0 5.0 1.0 3.0 3.0 3.0 3.0 6.0 6.0 8.0 8.0 8.0 11.0 1.0 3.0 3.0 3.0 3.0 6.0 6.0 8.0 8.0 8.0 11.0 157856.0 274779.0 177689.0 294256.0 42258.0 39979.0 173936.0 147959.0 451983.0 80564.0 289472.0 10637.0 67349.0 202663.0 32597.0 114794.0 188114.0 25840.0 482200.0 95230.0 451335.0 275122.0 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 24558 24558 Switzerland Super League 24558 Switzerland 49115 9956 322.0 Grasshopper Club Zürich GRA 49120 10179 110770.0 FC Sion SIO
25977 25978 24558 24558 2015/2016 9 2015-09-22 00:00:00 1992094 7896 10243 0 0 1.0 2.0 4.0 6.0 8.0 3.0 7.0 5.0 3.0 5.0 7.0 1.0 2.0 4.0 6.0 8.0 4.0 6.0 3.0 5.0 7.0 5.0 1.0 3.0 3.0 3.0 3.0 7.0 7.0 7.0 10.0 10.0 10.0 1.0 3.0 3.0 3.0 3.0 6.0 6.0 8.0 8.0 8.0 11.0 NaN 8881.0 173534.0 39646.0 282287.0 340790.0 393337.0 8893.0 614454.0 93229.0 178142.0 274776.0 121080.0 197757.0 260964.0 231614.0 113235.0 41116.0 462608.0 42262.0 92252.0 194532.0 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 24558 24558 Switzerland Super League 24558 Switzerland 51606 7896 NaN Lugano LUG 49124 10243 894.0 FC Zürich ZUR
25978 25979 24558 24558 2015/2016 9 2015-09-23 00:00:00 1992095 10192 9931 4 3 1.0 2.0 4.0 6.0 8.0 2.0 4.0 6.0 8.0 4.0 6.0 1.0 2.0 4.0 6.0 8.0 4.0 6.0 3.0 5.0 7.0 5.0 1.0 3.0 3.0 3.0 3.0 7.0 7.0 7.0 7.0 10.0 10.0 1.0 3.0 3.0 3.0 3.0 6.0 6.0 8.0 8.0 8.0 11.0 274787.0 492132.0 108451.0 25815.0 94553.0 384376.0 598355.0 36785.0 45174.0 302079.0 71764.0 156175.0 95216.0 172768.0 22834.0 458806.0 207234.0 25772.0 40274.0 34035.0 41726.0 527103.0 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 24558 24558 Switzerland Super League 24558 Switzerland 49117 10192 900.0 BSC Young Boys YB 49118 9931 896.0 FC Basel BAS

Quick Overview of missing values accross this dataset.

Number of samples & columns in the matches dataset

In [6]:
#Check if there are any null values in the dataframe
matches.info(verbose=True, null_counts = True)
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 25979 entries, 0 to 25978
Data columns (total 130 columns):
id                    25979 non-null int64
country_id            25979 non-null int64
league_id             25979 non-null int64
season                25979 non-null object
stage                 25979 non-null int64
date                  25979 non-null object
match_api_id          25979 non-null int64
home_team_api_id      25979 non-null int64
away_team_api_id      25979 non-null int64
home_team_goal        25979 non-null int64
away_team_goal        25979 non-null int64
home_player_X1        24158 non-null float64
home_player_X2        24158 non-null float64
home_player_X3        24147 non-null float64
home_player_X4        24147 non-null float64
home_player_X5        24147 non-null float64
home_player_X6        24147 non-null float64
home_player_X7        24147 non-null float64
home_player_X8        24147 non-null float64
home_player_X9        24147 non-null float64
home_player_X10       24147 non-null float64
home_player_X11       24147 non-null float64
away_player_X1        24147 non-null float64
away_player_X2        24147 non-null float64
away_player_X3        24147 non-null float64
away_player_X4        24147 non-null float64
away_player_X5        24147 non-null float64
away_player_X6        24147 non-null float64
away_player_X7        24147 non-null float64
away_player_X8        24147 non-null float64
away_player_X9        24146 non-null float64
away_player_X10       24146 non-null float64
away_player_X11       24140 non-null float64
home_player_Y1        24158 non-null float64
home_player_Y2        24158 non-null float64
home_player_Y3        24147 non-null float64
home_player_Y4        24147 non-null float64
home_player_Y5        24147 non-null float64
home_player_Y6        24147 non-null float64
home_player_Y7        24147 non-null float64
home_player_Y8        24147 non-null float64
home_player_Y9        24147 non-null float64
home_player_Y10       24147 non-null float64
home_player_Y11       24147 non-null float64
away_player_Y1        24147 non-null float64
away_player_Y2        24147 non-null float64
away_player_Y3        24147 non-null float64
away_player_Y4        24147 non-null float64
away_player_Y5        24147 non-null float64
away_player_Y6        24147 non-null float64
away_player_Y7        24147 non-null float64
away_player_Y8        24147 non-null float64
away_player_Y9        24146 non-null float64
away_player_Y10       24146 non-null float64
away_player_Y11       24140 non-null float64
home_player_1         24755 non-null float64
home_player_2         24664 non-null float64
home_player_3         24698 non-null float64
home_player_4         24656 non-null float64
home_player_5         24663 non-null float64
home_player_6         24654 non-null float64
home_player_7         24752 non-null float64
home_player_8         24670 non-null float64
home_player_9         24706 non-null float64
home_player_10        24543 non-null float64
home_player_11        24424 non-null float64
away_player_1         24745 non-null float64
away_player_2         24701 non-null float64
away_player_3         24686 non-null float64
away_player_4         24658 non-null float64
away_player_5         24644 non-null float64
away_player_6         24666 non-null float64
away_player_7         24744 non-null float64
away_player_8         24638 non-null float64
away_player_9         24651 non-null float64
away_player_10        24538 non-null float64
away_player_11        24425 non-null float64
goal                  14217 non-null object
shoton                14217 non-null object
shotoff               14217 non-null object
foulcommit            14217 non-null object
card                  14217 non-null object
cross                 14217 non-null object
corner                14217 non-null object
possession            14217 non-null object
B365H                 22592 non-null float64
B365D                 22592 non-null float64
B365A                 22592 non-null float64
BWH                   22575 non-null float64
BWD                   22575 non-null float64
BWA                   22575 non-null float64
IWH                   22520 non-null float64
IWD                   22520 non-null float64
IWA                   22520 non-null float64
LBH                   22556 non-null float64
LBD                   22556 non-null float64
LBA                   22556 non-null float64
PSH                   11168 non-null float64
PSD                   11168 non-null float64
PSA                   11168 non-null float64
WHH                   22571 non-null float64
WHD                   22571 non-null float64
WHA                   22571 non-null float64
SJH                   17097 non-null float64
SJD                   17097 non-null float64
SJA                   17097 non-null float64
VCH                   22568 non-null float64
VCD                   22568 non-null float64
VCA                   22568 non-null float64
GBH                   14162 non-null float64
GBD                   14162 non-null float64
GBA                   14162 non-null float64
BSH                   14161 non-null float64
BSD                   14161 non-null float64
BSA                   14161 non-null float64
id.1                  25979 non-null int64
country_id.1          25979 non-null int64
name                  25979 non-null object
id.2                  25979 non-null int64
name.1                25979 non-null object
id.3                  25979 non-null int64
team_api_id           25979 non-null int64
team_fifa_api_id      25801 non-null float64
team_long_name        25979 non-null object
team_short_name       25979 non-null object
id.4                  25979 non-null int64
team_api_id.1         25979 non-null int64
team_fifa_api_id.1    25801 non-null float64
team_long_name.1      25979 non-null object
team_short_name.1     25979 non-null object
dtypes: float64(98), int64(16), object(16)
memory usage: 25.8+ MB
In [7]:
#Descriptive statistics for the matches dataset
matches.describe()
Out[7]:
id country_id league_id stage match_api_id home_team_api_id away_team_api_id home_team_goal away_team_goal home_player_X1 home_player_X2 home_player_X3 home_player_X4 home_player_X5 home_player_X6 home_player_X7 home_player_X8 home_player_X9 home_player_X10 home_player_X11 away_player_X1 away_player_X2 away_player_X3 away_player_X4 away_player_X5 away_player_X6 away_player_X7 away_player_X8 away_player_X9 away_player_X10 away_player_X11 home_player_Y1 home_player_Y2 home_player_Y3 home_player_Y4 home_player_Y5 home_player_Y6 home_player_Y7 home_player_Y8 home_player_Y9 home_player_Y10 home_player_Y11 away_player_Y1 away_player_Y2 away_player_Y3 away_player_Y4 away_player_Y5 away_player_Y6 away_player_Y7 away_player_Y8 away_player_Y9 away_player_Y10 away_player_Y11 home_player_1 home_player_2 home_player_3 home_player_4 home_player_5 home_player_6 home_player_7 home_player_8 home_player_9 home_player_10 home_player_11 away_player_1 away_player_2 away_player_3 away_player_4 away_player_5 away_player_6 away_player_7 away_player_8 away_player_9 away_player_10 away_player_11 B365H B365D B365A BWH BWD BWA IWH IWD IWA LBH LBD LBA PSH PSD PSA WHH WHD WHA SJH SJD SJA VCH VCD VCA GBH GBD GBA BSH BSD BSA id.1 country_id.1 id.2 id.3 team_api_id team_fifa_api_id id.4 team_api_id.1 team_fifa_api_id.1
count 25979.000000 25979.000000 25979.000000 25979.000000 2.597900e+04 25979.000000 25979.000000 25979.000000 25979.000000 24158.000000 24158.000000 24147.000000 24147.000000 24147.000000 24147.000000 24147.000000 24147.000000 24147.000000 24147.000000 24147.000000 24147.000000 24147.000000 24147.000000 24147.000000 24147.00000 24147.000000 24147.000000 24147.000000 24146.000000 24146.000000 24140.000000 24158.000000 24158.000000 24147.000000 24147.000000 24147.000000 24147.000000 24147.000000 24147.000000 24147.000000 24147.000000 24147.00000 24147.000000 24147.0 24147.000000 24147.000000 24147.000000 24147.000000 24147.000000 24147.000000 24146.000000 24146.000000 24140.000000 24755.000000 24664.000000 24698.000000 24656.000000 24663.000000 24654.000000 24752.000000 24670.000000 24706.000000 24543.000000 24424.000000 24745.000000 24701.000000 24686.000000 24658.000000 24644.000000 24666.000000 24744.000000 24638.000000 24651.000000 24538.000000 24425.000000 22592.000000 22592.000000 22592.000000 22575.000000 22575.000000 22575.000000 22520.000000 22520.000000 22520.000000 22556.000000 22556.000000 22556.000000 11168.000000 11168.000000 11168.000000 22571.000000 22571.000000 22571.000000 17097.000000 17097.000000 17097.000000 22568.000000 22568.000000 22568.000000 14162.000000 14162.000000 14162.000000 14161.000000 14161.000000 14161.000000 25979.000000 25979.000000 25979.000000 25979.000000 25979.000000 25801.000000 25979.000000 25979.000000 25801.000000
mean 12990.000000 11738.630317 11738.630317 18.242773 1.195429e+06 9984.371993 9984.475115 1.544594 1.160938 0.999586 2.073516 4.061001 6.049199 7.544871 3.185158 4.769909 5.309604 5.822048 5.389407 5.783244 1.000290 2.074585 4.058558 6.052222 7.52549 3.195387 4.742660 5.294115 5.807546 5.476187 5.766114 0.999627 2.998634 3.000083 3.000414 3.237214 6.476954 6.672257 7.238953 8.026339 9.218868 10.43699 1.000248 3.0 3.000166 3.000248 3.245124 6.469706 6.680292 7.246366 8.022115 9.161186 10.455178 76638.362432 106854.091996 91601.289457 94540.204494 109527.842071 102308.768516 97287.636918 107290.992947 111131.536914 105612.508373 103413.870660 76628.199879 107614.617424 91126.781293 95083.910617 109800.936901 102308.262588 97898.056014 109265.114214 111087.003448 107149.115943 104932.876970 2.628818 3.839684 4.662222 2.559245 3.747597 4.396949 2.467613 3.608932 4.150575 2.536202 3.711740 4.385351 2.816447 4.132324 4.972744 2.578737 3.665295 4.482585 2.566061 3.755879 4.622343 2.668107 3.899048 4.840281 2.498764 3.648189 4.353097 2.497894 3.660742 4.405663 11738.630317 11738.630317 11738.630317 23871.933600 9984.371993 15849.694004 23871.830517 9984.475115 15848.954847
std 7499.635658 7553.936759 7553.936759 10.407354 4.946279e+05 14087.453758 14087.445135 1.297158 1.142110 0.022284 0.387185 0.385973 0.446024 1.609682 1.233609 1.092386 1.687376 1.968550 1.492068 0.759585 0.033438 0.403572 0.387047 0.448413 1.63765 1.284060 1.118226 1.687324 1.957116 1.541351 0.763611 0.024916 0.064003 0.012871 0.028777 0.940481 0.739988 0.588560 0.588947 1.126462 1.073893 0.50578 0.022292 0.0 0.025741 0.028779 0.955398 0.756391 0.586502 0.579881 1.126282 1.102167 0.498745 87556.226324 112619.266880 102703.003558 102789.967205 112787.542376 111514.726490 107050.579262 114527.022010 116221.869480 111528.262892 108761.188832 87428.953151 113758.447918 101438.583414 103845.905029 112450.715516 110861.276758 107359.030969 116358.092456 116492.957656 112397.540326 110237.525957 1.794463 1.118269 3.730104 1.637983 1.033468 3.292265 1.445642 0.803582 2.858912 1.640648 1.003846 3.398285 2.187924 1.516680 4.475458 1.685725 0.958069 3.585083 1.655535 0.999582 3.632164 1.928753 1.248221 4.318338 1.489299 0.867440 3.010189 1.507793 0.868272 3.189814 7553.936759 7553.936759 7553.936759 15103.110813 14087.453758 37336.801976 15102.994440 14087.445135 37335.020045
min 1.000000 1.000000 1.000000 1.000000 4.831290e+05 1601.000000 1601.000000 0.000000 0.000000 0.000000 0.000000 1.000000 2.000000 1.000000 1.000000 1.000000 1.000000 1.000000 1.000000 1.000000 1.000000 1.000000 2.000000 1.000000 1.00000 1.000000 1.000000 1.000000 1.000000 1.000000 3.000000 0.000000 0.000000 3.000000 3.000000 3.000000 3.000000 3.000000 3.000000 1.000000 3.000000 1.00000 1.000000 3.0 3.000000 3.000000 3.000000 3.000000 3.000000 3.000000 5.000000 6.000000 7.000000 2984.000000 2802.000000 2752.000000 2752.000000 2752.000000 2625.000000 2625.000000 2625.000000 2625.000000 2625.000000 2802.000000 2796.000000 2790.000000 2752.000000 2752.000000 2790.000000 2625.000000 2625.000000 2625.000000 2625.000000 2770.000000 2802.000000 1.040000 1.400000 1.080000 1.030000 1.650000 1.100000 1.030000 1.500000 1.100000 1.040000 1.400000 1.100000 1.040000 2.200000 1.090000 1.020000 1.020000 1.080000 1.040000 1.400000 1.100000 1.030000 1.620000 1.080000 1.050000 1.450000 1.120000 1.040000 1.330000 1.120000 1.000000 1.000000 1.000000 1.000000 1601.000000 1.000000 1.000000 1601.000000 1.000000
25% 6495.500000 4769.000000 4769.000000 9.000000 7.684365e+05 8475.000000 8475.000000 1.000000 0.000000 1.000000 2.000000 4.000000 6.000000 8.000000 2.000000 4.000000 3.000000 5.000000 4.000000 5.000000 1.000000 2.000000 4.000000 6.000000 8.00000 2.000000 4.000000 3.000000 5.000000 4.000000 5.000000 1.000000 3.000000 3.000000 3.000000 3.000000 6.000000 6.000000 7.000000 7.000000 8.000000 10.00000 1.000000 3.0 3.000000 3.000000 3.000000 6.000000 6.000000 7.000000 7.000000 8.000000 10.000000 30602.000000 32574.000000 30602.000000 30627.000000 33579.000000 31037.000000 30895.000000 32751.000000 33332.250000 32465.000000 32627.000000 30622.000000 32579.000000 30464.000000 30627.000000 33453.500000 31037.000000 30920.000000 32863.000000 33435.000000 32627.000000 32747.000000 1.670000 3.300000 2.500000 1.650000 3.200000 2.500000 1.650000 3.200000 2.500000 1.670000 3.200000 2.500000 1.720000 3.410000 2.560000 1.670000 3.200000 2.500000 1.670000 3.250000 2.500000 1.700000 3.300000 2.550000 1.670000 3.200000 2.500000 1.670000 3.250000 2.500000 4769.000000 4769.000000 4769.000000 9551.000000 8475.000000 80.000000 9551.000000 8475.000000 80.000000
50% 12990.000000 10257.000000 10257.000000 18.000000 1.147511e+06 8697.000000 8697.000000 1.000000 1.000000 1.000000 2.000000 4.000000 6.000000 8.000000 3.000000 5.000000 6.000000 5.000000 5.000000 6.000000 1.000000 2.000000 4.000000 6.000000 8.00000 3.000000 5.000000 6.000000 5.000000 5.000000 6.000000 1.000000 3.000000 3.000000 3.000000 3.000000 7.000000 7.000000 7.000000 8.000000 10.000000 10.00000 1.000000 3.0 3.000000 3.000000 3.000000 7.000000 7.000000 7.000000 8.000000 10.000000 10.000000 38230.000000 42388.000000 39731.000000 41060.000000 45996.000000 41467.000000 41432.000000 43319.000000 45605.000000 43296.000000 42091.000000 38289.000000 42388.000000 39892.000000 41083.000000 46212.000000 41634.500000 41433.000000 45816.000000 45860.000000 45358.000000 42652.000000 2.100000 3.500000 3.500000 2.100000 3.400000 3.400000 2.100000 3.300000 3.300000 2.100000 3.400000 3.300000 2.200000 3.640000 3.610000 2.150000 3.300000 3.400000 2.100000 3.400000 3.500000 2.150000 3.500000 3.500000 2.100000 3.300000 3.400000 2.100000 3.400000 3.400000 10257.000000 10257.000000 10257.000000 22042.000000 8697.000000 467.000000 22042.000000 8697.000000 467.000000
75% 19484.500000 17642.000000 17642.000000 27.000000 1.709852e+06 9925.000000 9925.000000 2.000000 2.000000 1.000000 2.000000 4.000000 6.000000 8.000000 4.000000 6.000000 7.000000 8.000000 7.000000 6.000000 1.000000 2.000000 4.000000 6.000000 8.00000 4.000000 6.000000 7.000000 8.000000 7.000000 6.000000 1.000000 3.000000 3.000000 3.000000 3.000000 7.000000 7.000000 8.000000 8.000000 10.000000 11.00000 1.000000 3.0 3.000000 3.000000 3.000000 7.000000 7.000000 8.000000 8.000000 10.000000 11.000000 96836.000000 159854.000000 128036.750000 145561.000000 160243.000000 150944.000000 141699.000000 160243.000000 164479.000000 158783.000000 161291.000000 96836.000000 159882.000000 121080.000000 145561.000000 160844.000000 151079.000000 144996.000000 163611.750000 164209.000000 161291.000000 161660.000000 2.800000 4.000000 5.250000 2.750000 3.800000 5.000000 2.600000 3.700000 4.600000 2.700000 3.750000 5.000000 2.980000 4.230000 5.410000 2.750000 3.750000 5.000000 2.750000 3.800000 5.250000 2.800000 4.000000 5.400000 2.650000 3.750000 5.000000 2.620000 3.750000 5.000000 17642.000000 17642.000000 17642.000000 37210.000000 9925.000000 1892.000000 37210.000000 9925.000000 1892.000000
max 25979.000000 24558.000000 24558.000000 38.000000 2.216672e+06 274581.000000 274581.000000 10.000000 9.000000 2.000000 8.000000 8.000000 8.000000 9.000000 9.000000 9.000000 9.000000 9.000000 9.000000 7.000000 6.000000 8.000000 9.000000 8.000000 9.00000 9.000000 9.000000 9.000000 9.000000 9.000000 8.000000 3.000000 3.000000 5.000000 5.000000 8.000000 9.000000 9.000000 10.000000 10.000000 11.000000 11.00000 3.000000 3.0 7.000000 7.000000 9.000000 10.000000 10.000000 10.000000 11.000000 11.000000 11.000000 698273.000000 748432.000000 705484.000000 723037.000000 733787.000000 750584.000000 692984.000000 693171.000000 730065.000000 742405.000000 726956.000000 698273.000000 748432.000000 705484.000000 728414.000000 746419.000000 722766.000000 750435.000000 717248.000000 722766.000000 722766.000000 726956.000000 26.000000 17.000000 51.000000 34.000000 19.500000 51.000000 20.000000 11.000000 25.000000 26.000000 19.000000 51.000000 36.000000 29.000000 47.500000 26.000000 17.000000 51.000000 23.000000 15.000000 41.000000 36.000000 26.000000 67.000000 21.000000 11.000000 34.000000 17.000000 13.000000 34.000000 24558.000000 24558.000000 24558.000000 51606.000000 274581.000000 112513.000000 51606.000000 274581.000000 112513.000000
In [8]:
# The output seen below is also seen with the other in-game events
matches.goal.value_counts()
Out[8]:
<goal />                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  993
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>26</elapsed><subtype>shot</subtype><player1>38460</player1><sortorder>5</sortorder><team>9906</team><id>1276238</id><n>299</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>41</elapsed><player2>38460</player2><subtype>header</subtype><player1>37412</player1><sortorder>1</sortorder><team>9906</team><id>1276312</id><n>313</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>70</elapsed><subtype>shot</subtype><player1>38460</player1><sortorder>1</sortorder><team>9906</team><id>1276525</id><n>346</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>26</elapsed><player1>27660</player1><sortorder>7</sortorder><team>8543</team><id>1310657</id><n>268</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>52</elapsed><player2>21446</player2><subtype>shot</subtype><player1>18506</player1><sortorder>4</sortorder><team>8543</team><id>1310734</id><n>288</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>74</elapsed><subtype>loose_ball</subtype><player1>25597</player1><sortorder>2</sortorder><team>8636</team><id>1310824</id><n>320</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>89</elapsed><subtype>direct_freekick</subtype><player1>21446</player1><sortorder>2</sortorder><team>8543</team><id>1310878</id><n>340</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>882</event_incident_typefk><coordinates><value>27</value><value>62</value></coordinates><elapsed>14</elapsed><player2>25551</player2><subtype>lob</subtype><player1>304668</player1><sortorder>1</sortorder><team>7788</team><id>5216738</id><n>268</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>20</value><value>4</value></coordinates><elapsed>53</elapsed><player2>350986</player2><subtype>header</subtype><player1>20645</player1><sortorder>1</sortorder><team>10217</team><id>5217314</id><n>299</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>20</value><value>8</value></coordinates><elapsed>56</elapsed><subtype>shot</subtype><player1>20645</player1><sortorder>3</sortorder><team>10217</team><id>5217341</id><n>325</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>37</elapsed><subtype>loose_ball</subtype><player1>38820</player1><sortorder>4</sortorder><team>8586</team><id>884445</id><n>178</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>54</elapsed><player2>30830</player2><subtype>shot</subtype><player1>30348</player1><sortorder>1</sortorder><team>8586</team><id>884755</id><n>202</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>30895</player2><subtype>shot</subtype><player1>38820</player1><sortorder>0</sortorder><team>8586</team><id>885280</id><n>229</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>16</value><value>61</value></coordinates><elapsed>32</elapsed><subtype>shot</subtype><player1>239287</player1><sortorder>3</sortorder><team>9804</team><id>4135902</id><n>163</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>50</elapsed><player1>39540</player1><sortorder>2</sortorder><team>9804</team><id>4136300</id><n>268</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>9</value></coordinates><elapsed>83</elapsed><player2>42491</player2><subtype>shot</subtype><player1>30709</player1><sortorder>2</sortorder><team>9876</team><id>4136702</id><n>445</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>407</event_incident_typefk><coordinates><value>28</value><value>57</value></coordinates><elapsed>90</elapsed><player2>239287</player2><subtype>distance</subtype><player1>155257</player1><sortorder>13</sortorder><team>9804</team><id>4136854</id><n>521</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>35</elapsed><player2>93480</player2><subtype>shot</subtype><player1>39122</player1><sortorder>3</sortorder><team>10267</team><id>2027931</id><n>239</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>54</elapsed><player2>33872</player2><subtype>shot</subtype><player1>30922</player1><sortorder>1</sortorder><team>8581</team><id>2028199</id><n>265</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>406</event_incident_typefk><elapsed>90</elapsed><player2>31953</player2><subtype>header</subtype><player1>38567</player1><sortorder>6</sortorder><team>8658</team><id>1405863</id><n>276</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player1>37653</player1><sortorder>0</sortorder><team>8371</team><id>3175426</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>38</elapsed><player1>37653</player1><sortorder>0</sortorder><team>8371</team><id>3175663</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>191315</player1><sortorder>0</sortorder><team>8633</team><id>3175738</id><n>33</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>80</elapsed><player1>25921</player1><sortorder>0</sortorder><team>8633</team><id>3176188</id><n>36</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>17</elapsed><player2>149917</player2><subtype>header</subtype><player1>38254</player1><sortorder>1</sortorder><team>8658</team><id>1449581</id><n>258</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>35</elapsed><subtype>distance</subtype><player1>30839</player1><sortorder>2</sortorder><team>8668</team><id>1449696</id><n>268</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>45</elapsed><player2>148315</player2><subtype>shot</subtype><player1>184360</player1><sortorder>5</sortorder><team>10252</team><id>2474926</id><n>319</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><elapsed>50</elapsed><player2>23264</player2><subtype>tap_in</subtype><player1>184360</player1><sortorder>1</sortorder><team>10252</team><id>2474975</id><n>322</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>58</elapsed><player2>30373</player2><subtype>shot</subtype><player1>70409</player1><sortorder>2</sortorder><team>10260</team><id>2475029</id><n>334</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>63</elapsed><player1>30602</player1><sortorder>2</sortorder><team>10252</team><id>2475055</id><n>350</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>87</elapsed><player2>30843</player2><subtype>header</subtype><player1>70409</player1><sortorder>3</sortorder><team>10260</team><id>2475149</id><n>375</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>8</value></coordinates><elapsed>12</elapsed><player2>163670</player2><subtype>shot</subtype><player1>282770</player1><sortorder>2</sortorder><team>8636</team><id>5580915</id><n>49</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>64</value></coordinates><elapsed>37</elapsed><player2>30284</player2><subtype>shot</subtype><player1>282723</player1><sortorder>1</sortorder><team>8534</team><id>5581020</id><n>150</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>649</event_incident_typefk><coordinates><value>22</value><value>3</value></coordinates><elapsed>40</elapsed><subtype>tap_in</subtype><player1>163670</player1><sortorder>4</sortorder><team>8636</team><id>5581048</id><n>180</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>19</value><value>6</value></coordinates><elapsed>12</elapsed><subtype>shot</subtype><player1>36379</player1><sortorder>5</sortorder><team>8262</team><id>5388902</id><n>115</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>21</value><value>6</value></coordinates><elapsed>40</elapsed><player2>141114</player2><subtype>header</subtype><player1>36889</player1><sortorder>2</sortorder><team>8262</team><id>5389334</id><n>299</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>13</value><value>53</value></coordinates><elapsed>63</elapsed><subtype>distance</subtype><player1>36035</player1><sortorder>3</sortorder><team>8406</team><id>5390002</id><n>440</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>299</event_incident_typefk><coordinates><value>20</value><value>63</value></coordinates><elapsed>77</elapsed><subtype>header</subtype><player1>150922</player1><sortorder>2</sortorder><team>8406</team><id>5390198</id><n>537</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>90</elapsed><player1>129918</player1><sortorder>0</sortorder><team>8406</team><id>5390490</id><n>620</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>12</elapsed><player1>33856</player1><sortorder>0</sortorder><team>8661</team><id>499905</id><n>18</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>18</elapsed><player1>24131</player1><sortorder>0</sortorder><team>8661</team><id>499906</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>23</elapsed><player1>43310</player1><sortorder>0</sortorder><team>9864</team><id>499968</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>67</elapsed><player1>25574</player1><sortorder>0</sortorder><team>8661</team><id>500527</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>65</value></coordinates><elapsed>4</elapsed><player2>157252</player2><subtype>shot</subtype><player1>97747</player1><sortorder>1</sortorder><team>9790</team><id>5350901</id><n>108</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>18</value><value>17</value></coordinates><elapsed>38</elapsed><player2>145551</player2><subtype>distance</subtype><player1>425963</player1><sortorder>0</sortorder><team>10189</team><id>5351697</id><n>336</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>20</value><value>6</value></coordinates><elapsed>66</elapsed><player2>461357</player2><subtype>header</subtype><player1>36784</player1><sortorder>4</sortorder><team>10189</team><id>5352926</id><n>752</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>32</value><value>8</value></coordinates><elapsed>77</elapsed><player2>425963</player2><subtype>shot</subtype><player1>461357</player1><sortorder>1</sortorder><team>10189</team><id>5353328</id><n>895</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><coordinates><value>21</value><value>2</value></coordinates><elapsed>84</elapsed><subtype>shot</subtype><player1>461357</player1><sortorder>1</sortorder><team>10189</team><id>5353547</id><n>951</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>406</event_incident_typefk><coordinates><value>26</value><value>65</value></coordinates><elapsed>90</elapsed><player2>97747</player2><subtype>header</subtype><player1>16300</player1><sortorder>11</sortorder><team>9790</team><id>5353849</id><n>1006</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>63</elapsed><player1>41760</player1><sortorder>0</sortorder><team>10233</team><id>944454</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player2>30909</player2><player1>19243</player1><sortorder>0</sortorder><team>9906</team><id>3323150</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>27</value><value>14</value></coordinates><elapsed>58</elapsed><player2>150466</player2><subtype>distance</subtype><player1>41199</player1><sortorder>1</sortorder><team>8636</team><id>4772577</id><n>365</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>7</elapsed><subtype>shot</subtype><player1>40176</player1><sortorder>2</sortorder><team>8226</team><id>460111</id><n>272</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>13</elapsed><subtype>shot</subtype><player1>36084</player1><sortorder>1</sortorder><team>8226</team><id>460222</id><n>278</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>36</elapsed><subtype>shot</subtype><player1>40176</player1><sortorder>2</sortorder><team>8226</team><id>460625</id><n>300</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>17</elapsed><player1>27974</player1><sortorder>0</sortorder><team>9888</team><id>1327422</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>26349</player1><sortorder>0</sortorder><team>9888</team><id>1327812</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player1>41309</player1><sortorder>0</sortorder><team>8533</team><id>1328200</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>68</elapsed><player1>26349</player1><sortorder>0</sortorder><team>9888</team><id>1328392</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>39721</player1><sortorder>0</sortorder><team>8533</team><id>1328687</id><n>32</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>47</elapsed><player1>128020</player1><sortorder>0</sortorder><team>8686</team><id>2781735</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>58</elapsed><player1>154249</player1><sortorder>0</sortorder><team>8686</team><id>2781749</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>84</elapsed><player1>49677</player1><sortorder>0</sortorder><team>9875</team><id>2781787</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>25</value><value>4</value></coordinates><elapsed>19</elapsed><player1>213653</player1><sortorder>1</sortorder><team>9864</team><id>4916136</id><n>133</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><coordinates><value>15</value><value>6</value></coordinates><elapsed>33</elapsed><subtype>volley</subtype><player1>361770</player1><sortorder>3</sortorder><team>10267</team><id>4916337</id><n>215</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>39</elapsed><subtype>saved_back_into_play</subtype><player1>37450</player1><sortorder>0</sortorder><team>9864</team><id>4916423</id><n>236</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><coordinates><value>25</value><value>8</value></coordinates><elapsed>75</elapsed><subtype>shot</subtype><player1>241825</player1><sortorder>1</sortorder><team>10267</team><id>4916716</id><n>461</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>89</elapsed><player1>75307</player1><sortorder>0</sortorder><team>10267</team><id>4916818</id><n>531</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>30</elapsed><player1>39535</player1><sortorder>0</sortorder><team>9875</team><id>2550293</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player1>25818</player1><sortorder>0</sortorder><team>9875</team><id>2550294</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>73</elapsed><player1>193441</player1><sortorder>0</sortorder><team>9875</team><id>2550463</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>40</elapsed><player1>119839</player1><sortorder>0</sortorder><team>10190</team><id>5317417</id><n>15</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>40</elapsed><player1>39376</player1><sortorder>0</sortorder><team>9804</team><id>2938880</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>64</elapsed><player1>41269</player1><sortorder>0</sortorder><team>9804</team><id>2938967</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>64</elapsed><player1>37506</player1><sortorder>0</sortorder><team>8305</team><id>622552</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>66</elapsed><player1>37506</player1><sortorder>0</sortorder><team>8305</team><id>622565</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>49</elapsed><player1>114339</player1><sortorder>0</sortorder><team>8479</team><id>622957</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>52</elapsed><player1>36394</player1><sortorder>0</sortorder><team>9827</team><id>3282244</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>74</elapsed><player2>230900</player2><player1>210692</player1><sortorder>0</sortorder><team>4087</team><id>3282280</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>82</elapsed><player2>154230</player2><player1>94010</player1><sortorder>0</sortorder><team>9827</team><id>3282300</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>11</elapsed><subtype>shot</subtype><player1>31097</player1><sortorder>1</sortorder><team>8586</team><id>894592</id><n>192</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>81</elapsed><subtype>loose_ball</subtype><player1>30348</player1><sortorder>1</sortorder><team>8586</team><id>894726</id><n>260</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>9</elapsed><player1>18664</player1><sortorder>0</sortorder><team>8696</team><id>656201</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player1>37581</player1><sortorder>0</sortorder><team>8696</team><id>656217</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>38</elapsed><player1>38382</player1><sortorder>0</sortorder><team>8696</team><id>656267</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>62</elapsed><player1>38460</player1><sortorder>0</sortorder><team>9906</team><id>656280</id><n>24</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>65</elapsed><player1>35638</player1><sortorder>0</sortorder><team>8696</team><id>656281</id><n>31</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>87</elapsed><player1>38567</player1><sortorder>0</sortorder><team>8696</team><id>656292</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>23</elapsed><player2>212893</player2><player1>71605</player1><sortorder>0</sortorder><team>8226</team><id>3349819</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>31</elapsed><player2>176300</player2><player1>25366</player1><sortorder>0</sortorder><team>9823</team><id>3349862</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player2>25366</player2><player1>176300</player1><sortorder>0</sortorder><team>9823</team><id>3349906</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>40</elapsed><player2>30924</player2><player1>25366</player1><sortorder>0</sortorder><team>9823</team><id>3349978</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>36011</player1><sortorder>0</sortorder><team>8226</team><id>3350036</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>75</elapsed><player2>29316</player2><player1>242709</player1><sortorder>0</sortorder><team>8226</team><id>3350561</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>78</elapsed><player1>41468</player1><sortorder>0</sortorder><team>10267</team><id>622639</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>27</value><value>10</value></coordinates><elapsed>18</elapsed><subtype>shot</subtype><player1>41433</player1><sortorder>2</sortorder><team>8686</team><id>5584239</id><n>114</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>26</value><value>2</value></coordinates><elapsed>39</elapsed><player2>96398</player2><subtype>header</subtype><player1>276738</player1><sortorder>1</sortorder><team>8686</team><id>5584341</id><n>211</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>7</value></coordinates><elapsed>85</elapsed><player2>30714</player2><subtype>shot</subtype><player1>96398</player1><sortorder>1</sortorder><team>8686</team><id>5584674</id><n>446</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>41</elapsed><player2>15403</player2><subtype>distance</subtype><player1>39902</player1><sortorder>0</sortorder><team>8721</team><id>991676</id><n>154</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>49</elapsed><player1>15403</player1><sortorder>1</sortorder><team>8721</team><id>991966</id><n>160</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>58</elapsed><player2>39902</player2><subtype>shot</subtype><player1>27324</player1><sortorder>2</sortorder><team>8721</team><id>992088</id><n>169</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>80</elapsed><player2>39902</player2><subtype>shot</subtype><player1>15403</player1><sortorder>0</sortorder><team>8721</team><id>992246</id><n>196</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>9</elapsed><player2>33991</player2><subtype>shot</subtype><player1>33989</player1><sortorder>2</sortorder><team>8302</team><id>881697</id><n>294</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>33</elapsed><player2>303059</player2><player1>278473</player1><sortorder>0</sortorder><team>8277</team><id>4127978</id><n>8</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player2>150119</player2><player1>155639</player1><sortorder>0</sortorder><team>8277</team><id>4128460</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>43</elapsed><player1>213489</player1><sortorder>0</sortorder><team>8558</team><id>2305561</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>51</elapsed><player1>102612</player1><sortorder>0</sortorder><team>8394</team><id>2305611</id><n>28</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player1>40958</player1><sortorder>0</sortorder><team>8394</team><id>2305716</id><n>30</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>52</elapsed><player1>39745</player1><sortorder>0</sortorder><team>9878</team><id>2515461</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>73</elapsed><player1>170660</player1><sortorder>0</sortorder><team>9878</team><id>2515608</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>49</elapsed><player1>32749</player1><sortorder>0</sortorder><team>9857</team><id>554939</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>54</elapsed><player1>41749</player1><sortorder>0</sortorder><team>9857</team><id>554940</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>69</elapsed><player1>39706</player1><sortorder>0</sortorder><team>8530</team><id>555068</id><n>15</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>85</elapsed><player1>37520</player1><sortorder>0</sortorder><team>8530</team><id>555137</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>26</value><value>6</value></coordinates><elapsed>3</elapsed><player2>484906</player2><subtype>header</subtype><player1>291635</player1><sortorder>1</sortorder><team>8306</team><id>5499505</id><n>35</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>33</value><value>64</value></coordinates><elapsed>48</elapsed><player2>33630</player2><subtype>shot</subtype><player1>541557</player1><sortorder>8</sortorder><team>9869</team><id>5500353</id><n>402</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>53</elapsed><player2>75310</player2><subtype>shot</subtype><player1>33989</player1><sortorder>0</sortorder><team>8302</team><id>1657552</id><n>199</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>88</elapsed><player1>303912</player1><sortorder>0</sortorder><team>8358</team><id>1889595</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>25</elapsed><player1>427439</player1><sortorder>0</sortorder><team>10179</team><id>5367949</id><n>7</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>87</elapsed><player1>402776</player1><sortorder>0</sortorder><team>10179</team><id>5369370</id><n>55</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>63</value></coordinates><elapsed>28</elapsed><player2>36889</player2><subtype>shot</subtype><player1>36554</player1><sortorder>0</sortorder><team>8262</team><id>5126855</id><n>154</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>23</value><value>15</value></coordinates><elapsed>44</elapsed><subtype>distance</subtype><player1>94916</player1><sortorder>2</sortorder><team>9788</team><id>5127110</id><n>241</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>36</value><value>13</value></coordinates><elapsed>51</elapsed><subtype>direct_freekick</subtype><player1>37292</player1><sortorder>0</sortorder><team>9788</team><id>5127741</id><n>349</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>26</value><value>66</value></coordinates><elapsed>67</elapsed><player2>36554</player2><subtype>header</subtype><player1>36889</player1><sortorder>5</sortorder><team>8262</team><id>5128013</id><n>483</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>6</value></coordinates><elapsed>86</elapsed><player2>94916</player2><subtype>shot</subtype><player1>33579</player1><sortorder>0</sortorder><team>9788</team><id>5128197</id><n>586</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>53</elapsed><player1>37446</player1><sortorder>0</sortorder><team>9783</team><id>2298784</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>156556</player1><sortorder>0</sortorder><team>9783</team><id>2298953</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>78</elapsed><player1>37471</player1><sortorder>0</sortorder><team>8305</team><id>1830965</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>52</elapsed><player2>167065</player2><player1>172321</player1><sortorder>0</sortorder><team>9810</team><id>3366011</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>85</elapsed><player2>38647</player2><player1>27478</player1><sortorder>0</sortorder><team>9810</team><id>3366436</id><n>29</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>22</elapsed><player1>24852</player1><sortorder>2</sortorder><team>8558</team><id>1301068</id><n>213</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>80</event_incident_typefk><elapsed>45</elapsed><subtype>shot</subtype><player1>30871</player1><sortorder>3</sortorder><team>9906</team><id>1301163</id><n>249</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>54</elapsed><subtype>shot</subtype><player1>37441</player1><sortorder>2</sortorder><team>8558</team><id>1301187</id><n>264</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>66</elapsed><player2>38460</player2><subtype>shot</subtype><player1>37412</player1><sortorder>1</sortorder><team>9906</team><id>1301201</id><n>273</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>78</elapsed><player2>24852</player2><subtype>shot</subtype><player1>40165</player1><sortorder>2</sortorder><team>8558</team><id>1301223</id><n>285</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><coordinates><value>33</value><value>15</value></coordinates><elapsed>25</elapsed><player2>49970</player2><subtype>deflected</subtype><player1>41199</player1><sortorder>1</sortorder><team>8636</team><id>4308535</id><n>141</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>25</value><value>63</value></coordinates><elapsed>44</elapsed><player2>40187</player2><subtype>header</subtype><player1>71055</player1><sortorder>2</sortorder><team>10167</team><id>4309124</id><n>235</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>47</elapsed><player1>19243</player1><sortorder>0</sortorder><team>9906</team><id>2757078</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>66</elapsed><player1>38424</player1><sortorder>0</sortorder><team>9906</team><id>2757233</id><n>31</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>84</elapsed><player1>72623</player1><sortorder>0</sortorder><team>9910</team><id>2757337</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>86</elapsed><player1>22543</player1><sortorder>0</sortorder><team>9906</team><id>2757338</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><coordinates><value>24</value><value>59</value></coordinates><elapsed>56</elapsed><subtype>shot</subtype><player1>33028</player1><sortorder>3</sortorder><team>8315</team><id>5138573</id><n>287</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>61</value></coordinates><elapsed>71</elapsed><player2>33028</player2><subtype>shot</subtype><player1>33871</player1><sortorder>4</sortorder><team>8315</team><id>5138696</id><n>357</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>22</elapsed><player2>30711</player2><subtype>shot</subtype><player1>33974</player1><sortorder>0</sortorder><team>8564</team><id>1237757</id><n>183</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>72</elapsed><player2>30711</player2><subtype>header</subtype><player1>35724</player1><sortorder>0</sortorder><team>8564</team><id>1237993</id><n>238</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>78</elapsed><subtype>shot</subtype><player1>18925</player1><sortorder>0</sortorder><team>9875</team><id>1238025</id><n>244</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>20</elapsed><player1>37087</player1><sortorder>0</sortorder><team>8358</team><id>1998343</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>188498</player1><sortorder>0</sortorder><team>8358</team><id>1998472</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>72</elapsed><player1>27512</player1><sortorder>0</sortorder><team>8358</team><id>1998683</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>75</elapsed><player1>39847</player1><sortorder>0</sortorder><team>9790</team><id>1998725</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>18823</player1><sortorder>0</sortorder><team>8530</team><id>1408300</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player1>42091</player1><sortorder>0</sortorder><team>9888</team><id>1408446</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>61</elapsed><player1>39428</player1><sortorder>0</sortorder><team>9888</team><id>1408473</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>80</elapsed><player1>41694</player1><sortorder>0</sortorder><team>8530</team><id>1408619</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>85</elapsed><player1>41694</player1><sortorder>0</sortorder><team>8530</team><id>1408739</id><n>32</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>39559</player1><sortorder>0</sortorder><team>8551</team><id>560700</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>3</elapsed><subtype>shot</subtype><player1>175947</player1><sortorder>2</sortorder><team>8472</team><id>2517375</id><n>233</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><elapsed>28</elapsed><player2>46353</player2><subtype>tap_in</subtype><player1>32627</player1><sortorder>2</sortorder><team>8472</team><id>2517440</id><n>270</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>4</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>33863</player2><subtype>shot</subtype><player1>33468</player1><sortorder>2</sortorder><team>8472</team><id>2517604</id><n>338</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>21</elapsed><player1>37429</player1><sortorder>0</sortorder><team>9847</team><id>2110726</id><n>20</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>88</elapsed><player1>129391</player1><sortorder>0</sortorder><team>9847</team><id>2111486</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>62</value></coordinates><elapsed>13</elapsed><player2>49847</player2><subtype>shot</subtype><player1>49836</player1><sortorder>1</sortorder><team>9910</team><id>5560242</id><n>64</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>38</elapsed><player1>33028</player1><sortorder>0</sortorder><team>8315</team><id>5560345</id><n>168</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>27</value><value>6</value></coordinates><elapsed>72</elapsed><subtype>shot</subtype><player1>33871</player1><sortorder>2</sortorder><team>8315</team><id>5560697</id><n>333</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>10</elapsed><player1>36011</player1><sortorder>0</sortorder><team>8226</team><id>3088841</id><n>25</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>18</elapsed><player1>29316</player1><sortorder>0</sortorder><team>8226</team><id>3088855</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>57</elapsed><player1>240367</player1><sortorder>0</sortorder><team>9904</team><id>3089386</id><n>33</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>242709</player1><sortorder>0</sortorder><team>8226</team><id>3089431</id><n>35</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>64</elapsed><player1>242709</player1><sortorder>0</sortorder><team>8226</team><id>3089435</id><n>37</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>17</value><value>4</value></coordinates><elapsed>43</elapsed><player2>466357</player2><subtype>header</subtype><player1>164519</player1><sortorder>4</sortorder><team>9941</team><id>4113258</id><n>238</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>25856</player1><sortorder>0</sortorder><team>9851</team><id>1549767</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player1>46241</player1><sortorder>0</sortorder><team>7819</team><id>1549846</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>4</elapsed><player1>26294</player1><sortorder>0</sortorder><team>8543</team><id>3019798</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player1>18733</player1><sortorder>0</sortorder><team>8530</team><id>3019811</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>39</elapsed><player1>66890</player1><sortorder>0</sortorder><team>8543</team><id>3019944</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>21446</player1><sortorder>0</sortorder><team>8543</team><id>3020199</id><n>30</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>26</value><value>3</value></coordinates><elapsed>10</elapsed><subtype>shot</subtype><player1>11560</player1><sortorder>1</sortorder><team>9880</team><id>3788506</id><n>203</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>20</value><value>65</value></coordinates><elapsed>19</elapsed><player2>72656</player2><subtype>header</subtype><player1>77741</player1><sortorder>2</sortorder><team>8564</team><id>3788646</id><n>217</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>8</value></coordinates><elapsed>17</elapsed><player2>157729</player2><subtype>shot</subtype><player1>143365</player1><sortorder>3</sortorder><team>10003</team><id>3807643</id><n>342</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>395</event_incident_typefk><coordinates><value>18</value><value>67</value></coordinates><elapsed>43</elapsed><player2>39968</player2><player1>46700</player1><sortorder>5</sortorder><team>10261</team><id>3808128</id><n>347</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>7</value></coordinates><elapsed>50</elapsed><player2>157729</player2><subtype>shot</subtype><player1>38831</player1><sortorder>1</sortorder><team>10003</team><id>3808563</id><n>353</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>22</value><value>66</value></coordinates><elapsed>75</elapsed><player2>264840</player2><subtype>volley</subtype><player1>46700</player1><sortorder>1</sortorder><team>10261</team><id>3809233</id><n>325</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>23</value><value>4</value></coordinates><elapsed>37</elapsed><player2>38578</player2><subtype>header</subtype><player1>58294</player1><sortorder>3</sortorder><team>8558</team><id>4099414</id><n>240</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>28</value><value>4</value></coordinates><elapsed>40</elapsed><player2>38578</player2><subtype>shot</subtype><player1>58294</player1><sortorder>3</sortorder><team>8558</team><id>4099431</id><n>264</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>14</value><value>6</value></coordinates><elapsed>74</elapsed><player2>107930</player2><subtype>shot</subtype><player1>41622</player1><sortorder>4</sortorder><team>8558</team><id>4099607</id><n>495</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>28</value><value>60</value></coordinates><elapsed>21</elapsed><player2>417818</player2><subtype>shot</subtype><player1>101042</player1><sortorder>3</sortorder><team>10217</team><id>5124069</id><n>146</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>28</value><value>59</value></coordinates><elapsed>50</elapsed><player2>279107</player2><subtype>shot</subtype><player1>417818</player1><sortorder>3</sortorder><team>10217</team><id>5124804</id><n>329</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>31</value><value>63</value></coordinates><elapsed>64</elapsed><player2>417818</player2><subtype>shot</subtype><player1>212370</player1><sortorder>5</sortorder><team>10217</team><id>5125136</id><n>439</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>80</event_incident_typefk><coordinates><value>19</value><value>62</value></coordinates><elapsed>90</elapsed><subtype>shot</subtype><player1>279107</player1><sortorder>7</sortorder><team>10217</team><id>5125649</id><n>612</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>26</elapsed><player1>30839</player1><sortorder>0</sortorder><team>9906</team><id>393007</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>38</elapsed><player1>38460</player1><sortorder>0</sortorder><team>9906</team><id>393041</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>43</elapsed><player1>38460</player1><sortorder>0</sortorder><team>9906</team><id>393053</id><n>20</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>80</elapsed><player1>38700</player1><sortorder>0</sortorder><team>9906</team><id>393240</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>22</elapsed><player2>40961</player2><subtype>header</subtype><player1>113836</player1><sortorder>14</sortorder><team>10260</team><id>1625805</id><n>203</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>159</event_incident_typefk><elapsed>27</elapsed><subtype>saved</subtype><player1>30843</player1><sortorder>0</sortorder><team>9825</team><id>1625857</id><n>73</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>28</elapsed><subtype>distance</subtype><player1>23354</player1><sortorder>0</sortorder><team>10260</team><id>1625875</id><n>199</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>41</elapsed><player2>23354</player2><subtype>distance</subtype><player1>30829</player1><sortorder>0</sortorder><team>10260</team><id>1626013</id><n>241</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>45</elapsed><player2>31435</player2><subtype>shot</subtype><player1>31013</player1><sortorder>12</sortorder><team>9825</team><id>1626086</id><n>263</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>64</elapsed><player2>23354</player2><subtype>distance</subtype><player1>30829</player1><sortorder>0</sortorder><team>10260</team><id>1626294</id><n>226</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>67</elapsed><player2>30829</player2><subtype>shot</subtype><player1>40945</player1><sortorder>1</sortorder><team>10260</team><id>1626310</id><n>227</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>70</elapsed><player2>23354</player2><subtype>shot</subtype><player1>30802</player1><sortorder>2</sortorder><team>10260</team><id>1626324</id><n>286</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>74</elapsed><player2>214685</player2><subtype>shot</subtype><player1>30843</player1><sortorder>12</sortorder><team>9825</team><id>1626342</id><n>284</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>82</elapsed><player1>30829</player1><sortorder>0</sortorder><team>10260</team><id>1626392</id><n>245</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>24154</player2><subtype>shot</subtype><player1>23354</player1><sortorder>1</sortorder><team>10260</team><id>1626452</id><n>259</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>8</value></coordinates><elapsed>14</elapsed><player2>37506</player2><subtype>shot</subtype><player1>358127</player1><sortorder>3</sortorder><team>10205</team><id>4837018</id><n>89</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>35</elapsed><player2>38817</player2><subtype>volley</subtype><player1>15403</player1><sortorder>2</sortorder><team>8456</team><id>2755207</id><n>245</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>53</elapsed><player1>37950</player1><sortorder>0</sortorder><team>8639</team><id>1559722</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>22</elapsed><player2>35532</player2><subtype>distance</subtype><player1>34430</player1><sortorder>0</sortorder><team>8559</team><id>1856262</id><n>222</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>49</elapsed><player2>23538</player2><subtype>header</subtype><player1>32627</player1><sortorder>2</sortorder><team>8602</team><id>1856648</id><n>252</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player1>21446</player1><sortorder>0</sortorder><team>8543</team><id>2688805</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>49</elapsed><player1>21446</player1><sortorder>0</sortorder><team>8543</team><id>2689014</id><n>6</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>57</elapsed><player1>30714</player1><sortorder>0</sortorder><team>8686</team><id>2689050</id><n>28</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>649</event_incident_typefk><coordinates><value>22</value><value>4</value></coordinates><elapsed>84</elapsed><subtype>tap_in</subtype><player1>79982</player1><sortorder>1</sortorder><team>9790</team><id>3959119</id><n>254</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>115</event_incident_typefk><coordinates><value>26</value><value>1</value></coordinates><elapsed>90</elapsed><player1>94139</player1><sortorder>14</sortorder><team>8697</team><id>3959256</id><n>314</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>30</value><value>11</value></coordinates><elapsed>6</elapsed><player2>181995</player2><subtype>shot</subtype><player1>39295</player1><sortorder>3</sortorder><team>9882</team><id>4096696</id><n>50</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>21</value><value>58</value></coordinates><elapsed>49</elapsed><player2>30920</player2><subtype>volley</subtype><player1>270774</player1><sortorder>1</sortorder><team>8540</team><id>4097507</id><n>334</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>57</elapsed><player2>32728</player2><subtype>header</subtype><player1>34275</player1><sortorder>0</sortorder><team>9850</team><id>2697279</id><n>253</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>85</elapsed><player1>24011</player1><sortorder>0</sortorder><team>9825</team><id>2697727</id><n>282</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>721</event_incident_typefk><elapsed>88</elapsed><player2>196386</player2><subtype>tap_in</subtype><player1>46469</player1><sortorder>1</sortorder><team>9825</team><id>2697777</id><n>285</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>31013</player2><subtype>shot</subtype><player1>32118</player1><sortorder>1</sortorder><team>9825</team><id>2697845</id><n>291</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>29</elapsed><player2>31097</player2><subtype>shot</subtype><player1>31921</player1><sortorder>1</sortorder><team>8586</team><id>1909022</id><n>215</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>34</elapsed><subtype>shot</subtype><player1>31097</player1><sortorder>2</sortorder><team>8586</team><id>1909098</id><n>219</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>64</elapsed><player2>40006</player2><subtype>shot</subtype><player1>31921</player1><sortorder>2</sortorder><team>8586</team><id>1909456</id><n>240</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>81</elapsed><player2>106228</player2><subtype>shot</subtype><player1>28901</player1><sortorder>0</sortorder><team>8528</team><id>1909670</id><n>251</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>7</elapsed><player1>43372</player1><sortorder>0</sortorder><team>8370</team><id>2709536</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>12</elapsed><player1>38131</player1><sortorder>0</sortorder><team>8661</team><id>2709541</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>50</elapsed><subtype>shot</subtype><player1>72417</player1><sortorder>1</sortorder><team>9850</team><id>2712140</id><n>295</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>288</event_incident_typefk><elapsed>52</elapsed><subtype>deflected</subtype><player1>96456</player1><sortorder>2</sortorder><team>9850</team><id>2712166</id><n>319</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>72</elapsed><player2>40565</player2><subtype>distance</subtype><player1>115980</player1><sortorder>3</sortorder><team>9798</team><id>2712674</id><n>345</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>17</elapsed><player1>50449</player1><sortorder>0</sortorder><team>10233</team><id>2307846</id><n>10</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>51</elapsed><player1>192504</player1><sortorder>0</sortorder><team>10233</team><id>2307939</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>85</elapsed><player1>161660</player1><sortorder>0</sortorder><team>10233</team><id>2308040</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>13</elapsed><player2>38373</player2><subtype>header</subtype><player1>23933</player1><sortorder>2</sortorder><team>10261</team><id>1429133</id><n>282</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>38</elapsed><player2>34261</player2><subtype>shot</subtype><player1>51553</player1><sortorder>3</sortorder><team>8559</team><id>1429484</id><n>318</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>39</elapsed><subtype>shot</subtype><player1>27665</player1><sortorder>10</sortorder><team>9888</team><id>1497520</id><n>330</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>66</elapsed><player2>27665</player2><subtype>shot</subtype><player1>39537</player1><sortorder>4</sortorder><team>9888</team><id>1498161</id><n>369</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>69</elapsed><player2>27702</player2><subtype>shot</subtype><player1>30284</player1><sortorder>5</sortorder><team>9882</team><id>1498195</id><n>392</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>8</elapsed><player1>112012</player1><sortorder>0</sortorder><team>9874</team><id>3156862</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>28</elapsed><player1>210184</player1><sortorder>0</sortorder><team>9941</team><id>3156955</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>210184</player1><sortorder>0</sortorder><team>9941</team><id>3156998</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>47</elapsed><player1>26406</player1><sortorder>0</sortorder><team>9941</team><id>3157042</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>62</elapsed><player1>210184</player1><sortorder>0</sortorder><team>9941</team><id>3157051</id><n>25</n><type>goal</type><goal_type>p</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>90</elapsed><player1>291642</player1><sortorder>0</sortorder><team>9874</team><id>3157089</id><n>27</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>10</value></coordinates><elapsed>15</elapsed><player2>157729</player2><subtype>shot</subtype><player1>143365</player1><sortorder>1</sortorder><team>10003</team><id>3969561</id><n>42</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>25</elapsed><player1>8985</player1><sortorder>0</sortorder><team>9826</team><id>3969731</id><n>74</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player1>33782</player1><sortorder>0</sortorder><team>9847</team><id>2045358</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>59</elapsed><player1>95955</player1><sortorder>0</sortorder><team>8592</team><id>2045523</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>61</elapsed><player1>26564</player1><sortorder>0</sortorder><team>9847</team><id>2045524</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>77</elapsed><player1>26437</player1><sortorder>0</sortorder><team>10189</team><id>2440383</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>2</elapsed><player1>38573</player1><sortorder>0</sortorder><team>9783</team><id>569902</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>38573</player1><sortorder>0</sortorder><team>9783</team><id>570374</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>68</elapsed><player1>37446</player1><sortorder>0</sortorder><team>9783</team><id>570423</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>80</elapsed><player1>27461</player1><sortorder>0</sortorder><team>10189</team><id>467725</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>26437</player1><sortorder>0</sortorder><team>10189</team><id>467921</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player1>26420</player1><sortorder>0</sortorder><team>10242</team><id>2429782</id><n>15</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>64</elapsed><player1>46700</player1><sortorder>0</sortorder><team>8358</team><id>1258711</id><n>18</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>21</elapsed><player1>161660</player1><sortorder>0</sortorder><team>9804</team><id>3204903</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player1>35643</player1><sortorder>0</sortorder><team>10167</team><id>3204909</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>27679</player1><sortorder>0</sortorder><team>10167</team><id>3204918</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>70</elapsed><player1>38827</player1><sortorder>0</sortorder><team>10167</team><id>3204956</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>35</elapsed><player1>38188</player1><sortorder>0</sortorder><team>9810</team><id>2568591</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>65</elapsed><player1>212893</player1><sortorder>0</sortorder><team>8226</team><id>2568646</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>68</elapsed><player1>38647</player1><sortorder>0</sortorder><team>9810</team><id>2568647</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>15</value><value>64</value></coordinates><elapsed>41</elapsed><player2>40683</player2><subtype>header</subtype><player1>352887</player1><sortorder>1</sortorder><team>9851</team><id>4874758</id><n>189</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>27</value><value>6</value></coordinates><elapsed>51</elapsed><player2>38336</player2><subtype>header</subtype><player1>450002</player1><sortorder>2</sortorder><team>9829</team><id>4875113</id><n>281</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>159</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>65</elapsed><subtype>saved</subtype><player1>304856</player1><sortorder>0</sortorder><team>9851</team><id>4875364</id><n>342</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>36</elapsed><player1>40695</player1><sortorder>11</sortorder><team>10194</team><id>2519071</id><n>281</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>52</elapsed><player2>40695</player2><subtype>header</subtype><player1>30988</player1><sortorder>14</sortorder><team>10194</team><id>2519294</id><n>298</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>649</event_incident_typefk><elapsed>56</elapsed><subtype>tap_in</subtype><player1>37672</player1><sortorder>5</sortorder><team>8581</team><id>1827084</id><n>337</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player1>35724</player1><sortorder>0</sortorder><team>9847</team><id>2522304</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>73</elapsed><player1>26392</player1><sortorder>0</sortorder><team>9847</team><id>2522316</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>90</elapsed><player1>32577</player1><sortorder>0</sortorder><team>8521</team><id>2522327</id><n>21</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>24</elapsed><player1>40686</player1><sortorder>0</sortorder><team>10167</team><id>1875652</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>66</elapsed><player1>42433</player1><sortorder>0</sortorder><team>10167</team><id>1876023</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player1>184653</player1><sortorder>0</sortorder><team>8551</team><id>1876130</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>96540</player1><sortorder>0</sortorder><team>10167</team><id>1876237</id><n>29</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>23</value><value>60</value></coordinates><elapsed>16</elapsed><subtype>shot</subtype><player1>46509</player1><sortorder>2</sortorder><team>9847</team><id>5118931</id><n>222</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>23</value><value>54</value></coordinates><elapsed>36</elapsed><subtype>distance</subtype><player1>35724</player1><sortorder>1</sortorder><team>9847</team><id>5119357</id><n>413</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>882</event_incident_typefk><coordinates><value>17</value><value>66</value></coordinates><elapsed>50</elapsed><player2>215299</player2><subtype>lob</subtype><player1>46509</player1><sortorder>3</sortorder><team>9847</team><id>5119655</id><n>507</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>85</elapsed><subtype>saved_back_into_play</subtype><player1>183530</player1><sortorder>0</sortorder><team>7819</team><id>5119969</id><n>797</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>64</value></coordinates><elapsed>8</elapsed><player2>94086</player2><subtype>shot</subtype><player1>107417</player1><sortorder>3</sortorder><team>8455</team><id>4133048</id><n>58</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>22</value><value>3</value></coordinates><elapsed>48</elapsed><player2>358289</player2><subtype>header</subtype><player1>257847</player1><sortorder>7</sortorder><team>10252</team><id>4134455</id><n>401</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>18</value><value>62</value></coordinates><elapsed>66</elapsed><player2>72541</player2><subtype>volley</subtype><player1>31306</player1><sortorder>4</sortorder><team>8455</team><id>4134970</id><n>550</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><coordinates><value>27</value><value>67</value></coordinates><elapsed>7</elapsed><subtype>header</subtype><player1>20645</player1><sortorder>2</sortorder><team>10217</team><id>5476342</id><n>46</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>21</value><value>6</value></coordinates><elapsed>35</elapsed><player2>538499</player2><subtype>header</subtype><player1>157630</player1><sortorder>2</sortorder><team>8277</team><id>5477001</id><n>198</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>32</value><value>61</value></coordinates><elapsed>63</elapsed><player1>112477</player1><sortorder>1</sortorder><team>8277</team><id>5477726</id><n>361</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>10</value></coordinates><elapsed>90</elapsed><player2>541330</player2><subtype>shot</subtype><player1>155639</player1><sortorder>1</sortorder><team>8277</team><id>5478296</id><n>493</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>18</elapsed><player1>21446</player1><sortorder>0</sortorder><team>8543</team><id>2307844</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>81</elapsed><player1>26344</player1><sortorder>0</sortorder><team>9748</team><id>2000299</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>45</elapsed><player2>25667</player2><subtype>shot</subtype><player1>113465</player1><sortorder>2</sortorder><team>8655</team><id>1742637</id><n>199</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>53</elapsed><player2>23115</player2><subtype>volley</subtype><player1>37166</player1><sortorder>3</sortorder><team>9850</team><id>1742853</id><n>204</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>62</elapsed><player2>113631</player2><subtype>shot</subtype><player1>24160</player1><sortorder>3</sortorder><team>8655</team><id>1742986</id><n>218</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>64</elapsed><player2>23916</player2><subtype>shot</subtype><player1>19020</player1><sortorder>3</sortorder><team>8655</team><id>1743020</id><n>219</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>288</event_incident_typefk><elapsed>82</elapsed><subtype>deflected</subtype><player1>24583</player1><sortorder>1</sortorder><team>9850</team><id>1743280</id><n>197</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><elapsed_plus>4</elapsed_plus><event_incident_typefk>20</event_incident_typefk><elapsed>90</elapsed><player1>24698</player1><sortorder>1</sortorder><team>9850</team><id>1743385</id><n>192</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>20</value><value>5</value></coordinates><elapsed>25</elapsed><subtype>shot</subtype><player1>179239</player1><sortorder>2</sortorder><team>8674</team><id>5107816</id><n>109</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><coordinates><value>19</value><value>63</value></coordinates><elapsed>50</elapsed><player2>188557</player2><subtype>deflected</subtype><player1>37139</player1><sortorder>4</sortorder><team>10235</team><id>5108344</id><n>299</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>43</elapsed><player1>35724</player1><sortorder>0</sortorder><team>9847</team><id>2564134</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>67</elapsed><player1>179791</player1><sortorder>0</sortorder><team>7819</team><id>2110221</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>86</elapsed><player2>159833</player2><subtype>distance</subtype><player1>31921</player1><sortorder>0</sortorder><team>8586</team><id>2746909</id><n>289</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>42</elapsed><subtype>shot</subtype><player1>116772</player1><sortorder>0</sortorder><team>9823</team><id>797855</id><n>203</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>68</elapsed><player1>36034</player1><sortorder>0</sortorder><team>8358</team><id>798646</id><n>222</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>411</event_incident_typefk><elapsed>90</elapsed><player2>37313</player2><subtype>volley</subtype><player1>38190</player1><sortorder>2</sortorder><team>8358</team><id>798940</id><n>234</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>66</elapsed><player2>24391</player2><subtype>shot</subtype><player1>39474</player1><sortorder>0</sortorder><team>8529</team><id>548403</id><n>316</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>77</elapsed><player2>35561</player2><subtype>shot</subtype><player1>35724</player1><sortorder>2</sortorder><team>8636</team><id>548446</id><n>330</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><elapsed_plus>4</elapsed_plus><event_incident_typefk>346</event_incident_typefk><elapsed>90</elapsed><player1>39349</player1><sortorder>2</sortorder><team>8636</team><id>548528</id><n>218</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>47</elapsed><player1>184138</player1><sortorder>0</sortorder><team>8560</team><id>2097934</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>70</elapsed><player1>184138</player1><sortorder>0</sortorder><team>8560</team><id>2098190</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>83</elapsed><player1>46289</player1><sortorder>0</sortorder><team>8560</team><id>2098311</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>27686</player1><sortorder>0</sortorder><team>9804</team><id>464547</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>64</elapsed><player1>39752</player1><sortorder>0</sortorder><team>9804</team><id>464568</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>66</elapsed><player1>27657</player1><sortorder>0</sortorder><team>8524</team><id>464611</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>4</elapsed><player1>24536</player1><sortorder>0</sortorder><team>8535</team><id>2631996</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>38</elapsed><player1>161661</player1><sortorder>0</sortorder><team>8533</team><id>2632122</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>78</elapsed><player1>165624</player1><sortorder>0</sortorder><team>8535</team><id>2632289</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>69</elapsed><player1>150401</player1><sortorder>1</sortorder><team>8543</team><id>1385778</id><n>357</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>73</elapsed><player2>37767</player2><subtype>header</subtype><player1>150401</player1><sortorder>3</sortorder><team>8543</team><id>1385826</id><n>361</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>40</elapsed><player2>37459</player2><subtype>header</subtype><player1>33086</player1><sortorder>1</sortorder><team>8456</team><id>2371836</id><n>241</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>82</elapsed><player2>37436</player2><subtype>shot</subtype><player1>46539</player1><sortorder>333</sortorder><team>9825</team><id>2372199</id><n>285</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>89</elapsed><subtype>saved_back_into_play</subtype><player1>364520</player1><sortorder>0</sortorder><team>7943</team><id>5518983</id><n>639</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>54</elapsed><subtype>loose_ball</subtype><player1>141370</player1><sortorder>2</sortorder><team>9810</team><id>1518380</id><n>246</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>89</elapsed><player1>27326</player1><sortorder>1</sortorder><team>9823</team><id>1518916</id><n>288</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>18</elapsed><player1>166648</player1><sortorder>1</sortorder><team>8302</team><id>4266527</id><n>130</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>22</value><value>2</value></coordinates><elapsed>32</elapsed><player2>151063</player2><subtype>header</subtype><player1>166648</player1><sortorder>1</sortorder><team>8302</team><id>4266720</id><n>230</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>8</value></coordinates><elapsed>81</elapsed><player2>108568</player2><subtype>shot</subtype><player1>26392</player1><sortorder>3</sortorder><team>8302</team><id>4267389</id><n>584</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player1>27302</player1><sortorder>0</sortorder><team>9905</team><id>718222</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>42</elapsed><player1>73448</player1><sortorder>0</sortorder><team>8178</team><id>718266</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>31199</player1><sortorder>0</sortorder><team>8178</team><id>718315</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>82</elapsed><player1>39819</player1><sortorder>0</sortorder><team>9905</team><id>718316</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>26</elapsed><subtype>loose_ball</subtype><player1>30655</player1><sortorder>2</sortorder><team>8633</team><id>741914</id><n>278</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>30</elapsed><player2>21445</player2><subtype>header</subtype><player1>37446</player1><sortorder>2</sortorder><team>9783</team><id>741924</id><n>285</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>35</elapsed><player1>30893</player1><sortorder>1</sortorder><team>8633</team><id>741935</id><n>292</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>46</elapsed><player2>31045</player2><subtype>shot</subtype><player1>33761</player1><sortorder>3</sortorder><team>9783</team><id>742016</id><n>308</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>60</elapsed><subtype>distance</subtype><player1>23988</player1><sortorder>0</sortorder><team>8633</team><id>742083</id><n>333</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>9</elapsed><player2>93480</player2><subtype>shot</subtype><player1>46384</player1><sortorder>2</sortorder><team>10267</team><id>1949373</id><n>212</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>22</elapsed><player2>150250</player2><subtype>shot</subtype><player1>30981</player1><sortorder>3</sortorder><team>8634</team><id>1949427</id><n>225</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>27</elapsed><player2>30738</player2><subtype>shot</subtype><player1>30981</player1><sortorder>4</sortorder><team>8634</team><id>1949441</id><n>231</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>76</elapsed><subtype>shot</subtype><player1>30981</player1><sortorder>2</sortorder><team>8634</team><id>1949765</id><n>276</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>85</elapsed><player2>154257</player2><subtype>shot</subtype><player1>30981</player1><sortorder>0</sortorder><team>8634</team><id>1949784</id><n>283</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>80</event_incident_typefk><elapsed>90</elapsed><subtype>shot</subtype><player1>39854</player1><sortorder>0</sortorder><team>8634</team><id>1949793</id><n>289</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>16</elapsed><player1>30727</player1><sortorder>0</sortorder><team>9885</team><id>531170</id><n>239</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>31</elapsed><player2>30743</player2><subtype>shot</subtype><player1>46554</player1><sortorder>1</sortorder><team>8564</team><id>531232</id><n>256</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>34</elapsed><player2>30727</player2><subtype>header</subtype><player1>41884</player1><sortorder>1</sortorder><team>9885</team><id>531244</id><n>260</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>41</elapsed><player2>41892</player2><subtype>header</subtype><player1>38827</player1><sortorder>1</sortorder><team>9885</team><id>531279</id><n>271</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><elapsed>56</elapsed><player2>26096</player2><subtype>deflected</subtype><player1>32751</player1><sortorder>1</sortorder><team>8564</team><id>531414</id><n>289</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>69</elapsed><player2>24132</player2><subtype>shot</subtype><player1>38827</player1><sortorder>1</sortorder><team>9885</team><id>531461</id><n>302</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>7</elapsed><player2>30136</player2><subtype>shot</subtype><player1>26784</player1><sortorder>1</sortorder><team>8537</team><id>900331</id><n>154</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>48</elapsed><player2>18506</player2><subtype>shot</subtype><player1>27657</player1><sortorder>2</sortorder><team>8543</team><id>900716</id><n>200</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>55</elapsed><player2>25598</player2><subtype>shot</subtype><player1>27657</player1><sortorder>1</sortorder><team>8543</team><id>900783</id><n>209</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>72</elapsed><subtype>shot</subtype><player1>25598</player1><sortorder>1</sortorder><team>8543</team><id>900936</id><n>217</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>20</event_incident_typefk><elapsed>90</elapsed><player1>16351</player1><sortorder>0</sortorder><team>8543</team><id>901108</id><n>231</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>5</elapsed><player1>41124</player1><sortorder>0</sortorder><team>10249</team><id>2075035</id><n>15</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>19</elapsed><subtype>shot</subtype><player1>30663</player1><sortorder>5</sortorder><team>9906</team><id>1182905</id><n>118</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><elapsed>83</elapsed><subtype>header</subtype><player1>33028</player1><sortorder>4</sortorder><team>10267</team><id>1183261</id><n>158</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>1</elapsed><player2>408780</player2><player1>303926</player1><sortorder>0</sortorder><team>10228</team><id>4487261</id><n>7</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>72</elapsed><player2>292773</player2><player1>360559</player1><sortorder>0</sortorder><team>8611</team><id>4488558</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>73</elapsed><player2>186847</player2><player1>360559</player1><sortorder>0</sortorder><team>8611</team><id>4488566</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>77</elapsed><player2>360559</player2><player1>38913</player1><sortorder>0</sortorder><team>8611</team><id>4488624</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>27</value><value>67</value></coordinates><elapsed>71</elapsed><player2>107417</player2><subtype>tap_in</subtype><player1>178812</player1><sortorder>22</sortorder><team>8455</team><id>3756276</id><n>346</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>8</value></coordinates><elapsed>85</elapsed><player2>38807</player2><subtype>shot</subtype><player1>30631</player1><sortorder>33</sortorder><team>8456</team><id>3756526</id><n>328</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>14</elapsed><player1>35575</player1><sortorder>0</sortorder><team>8529</team><id>2000420</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>45</elapsed><player1>35575</player1><sortorder>0</sortorder><team>8529</team><id>2000426</id><n>29</n><type>goal</type><goal_type>p</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>56</elapsed><player1>35575</player1><sortorder>0</sortorder><team>8529</team><id>2000438</id><n>22</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player1>31199</player1><sortorder>0</sortorder><team>8178</team><id>2116881</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>32</elapsed><player1>31199</player1><sortorder>0</sortorder><team>8178</team><id>2117258</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>59</elapsed><player1>212875</player1><sortorder>0</sortorder><team>8165</team><id>2117606</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>77</elapsed><player1>178812</player1><sortorder>0</sortorder><team>8178</team><id>2117791</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>88</elapsed><player1>31199</player1><sortorder>0</sortorder><team>8178</team><id>2117919</id><n>29</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>52</elapsed><player1>37273</player1><sortorder>0</sortorder><team>8530</team><id>2054931</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>61</elapsed><player1>27665</player1><sortorder>0</sortorder><team>9888</team><id>2055096</id><n>11</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>88</elapsed><player1>39556</player1><sortorder>0</sortorder><team>9888</team><id>2055326</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>27665</player1><sortorder>0</sortorder><team>9888</team><id>2055327</id><n>29</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>53</elapsed><player2>37234</player2><subtype>header</subtype><player1>114268</player1><sortorder>12</sortorder><team>8466</team><id>3007323</id><n>235</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>19</value><value>66</value></coordinates><elapsed>54</elapsed><player2>325916</player2><subtype>header</subtype><player1>75447</player1><sortorder>4</sortorder><team>9885</team><id>5074058</id><n>294</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>60</value></coordinates><elapsed>89</elapsed><player2>248453</player2><subtype>shot</subtype><player1>244966</player1><sortorder>4</sortorder><team>9885</team><id>5074249</id><n>423</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>63</value></coordinates><elapsed>90</elapsed><player2>213501</player2><subtype>shot</subtype><player1>166595</player1><sortorder>7</sortorder><team>9885</team><id>5074268</id><n>450</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>15</value><value>6</value></coordinates><elapsed>14</elapsed><subtype>shot</subtype><player1>25496</player1><sortorder>2</sortorder><team>8592</team><id>4506931</id><n>110</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>21</value><value>6</value></coordinates><elapsed>39</elapsed><player1>407765</player1><sortorder>1</sortorder><team>7794</team><id>4507483</id><n>202</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>30</value><value>6</value></coordinates><elapsed>89</elapsed><player2>210691</player2><subtype>shot</subtype><player1>357080</player1><sortorder>3</sortorder><team>8592</team><id>4508860</id><n>435</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>32</elapsed><player2>37950</player2><player1>154249</player1><sortorder>0</sortorder><team>8686</team><id>3370511</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player2>41433</player2><player1>154249</player1><sortorder>0</sortorder><team>8686</team><id>3370832</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>74</elapsed><player2>264842</player2><player1>154249</player1><sortorder>0</sortorder><team>8686</team><id>3370910</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>89</elapsed><player1>35575</player1><sortorder>0</sortorder><team>8529</team><id>3370950</id><n>22</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><coordinates><value>26</value><value>4</value></coordinates><elapsed>30</elapsed><subtype>header</subtype><player1>150407</player1><sortorder>2</sortorder><team>9880</team><id>3747418</id><n>178</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>32</value><value>16</value></coordinates><elapsed>32</elapsed><player2>96646</player2><subtype>distance</subtype><player1>265924</player1><sortorder>0</sortorder><team>9880</team><id>3747460</id><n>198</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>55</elapsed><player1>37457</player1><sortorder>0</sortorder><team>8534</team><id>3747936</id><n>229</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>24</value><value>67</value></coordinates><elapsed>72</elapsed><subtype>shot</subtype><player1>358155</player1><sortorder>2</sortorder><team>8534</team><id>3748140</id><n>234</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>18</value><value>66</value></coordinates><elapsed>16</elapsed><player2>25819</player2><subtype>header</subtype><player1>207236</player1><sortorder>3</sortorder><team>9788</team><id>4831606</id><n>295</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>21</value><value>65</value></coordinates><elapsed>20</elapsed><player1>27324</player1><sortorder>1</sortorder><team>10269</team><id>4831660</id><n>136</n><type>goal</type><goal_type>o</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>40</elapsed><player1>177720</player1><sortorder>1</sortorder><team>10269</team><id>4832093</id><n>246</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>20</value><value>62</value></coordinates><elapsed>90</elapsed><subtype>shot</subtype><player1>25819</player1><sortorder>0</sortorder><team>9788</team><id>4833667</id><n>622</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>6</elapsed><player2>41044</player2><subtype>header</subtype><player1>30893</player1><sortorder>2</sortorder><team>8633</team><id>1945353</id><n>184</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>45</elapsed><player2>30889</player2><subtype>shot</subtype><player1>26166</player1><sortorder>4</sortorder><team>8633</team><id>1945538</id><n>226</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>73</elapsed><subtype>distance</subtype><player1>46509</player1><sortorder>0</sortorder><team>8633</team><id>1945740</id><n>239</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>89</elapsed><subtype>shot</subtype><player1>26166</player1><sortorder>1</sortorder><team>8633</team><id>1945805</id><n>252</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>9</elapsed><subtype>direct_freekick</subtype><player1>36011</player1><sortorder>0</sortorder><team>8226</team><id>1603519</id><n>290</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>19</elapsed><subtype>loose_ball</subtype><player1>30960</player1><sortorder>2</sortorder><team>8586</team><id>3261596</id><n>200</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>53</elapsed><subtype>loose_ball</subtype><player1>114971</player1><sortorder>2</sortorder><team>8586</team><id>3261987</id><n>220</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>82</elapsed><subtype>shot</subtype><player1>30960</player1><sortorder>2</sortorder><team>8586</team><id>3262245</id><n>270</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>88</elapsed><player2>500520</player2><subtype>distance</subtype><player1>110189</player1><sortorder>2</sortorder><team>8586</team><id>3262293</id><n>251</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>28</value><value>67</value></coordinates><elapsed>2</elapsed><player2>178120</player2><subtype>header</subtype><player1>73024</player1><sortorder>6</sortorder><team>7943</team><id>4141428</id><n>31</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>23</value><value>6</value></coordinates><elapsed>9</elapsed><player2>181995</player2><subtype>header</subtype><player1>39295</player1><sortorder>2</sortorder><team>9882</team><id>4141515</id><n>67</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>23</elapsed><player2>38433</player2><subtype>shot</subtype><player1>38699</player1><sortorder>2</sortorder><team>10205</team><id>1162734</id><n>283</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>32</elapsed><subtype>shot</subtype><player1>38433</player1><sortorder>3</sortorder><team>10205</team><id>1162773</id><n>323</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>55</elapsed><player1>38699</player1><sortorder>2</sortorder><team>10205</team><id>1162877</id><n>372</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>78</elapsed><player2>52563</player2><subtype>shot</subtype><player1>25986</player1><sortorder>1</sortorder><team>10205</team><id>1162937</id><n>383</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>22</value><value>2</value></coordinates><elapsed>24</elapsed><player2>199833</player2><subtype>tap_in</subtype><player1>195199</player1><sortorder>2</sortorder><team>7943</team><id>4263280</id><n>132</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><coordinates><value>12</value><value>58</value></coordinates><elapsed>26</elapsed><player2>182106</player2><subtype>deflected</subtype><player1>71055</player1><sortorder>1</sortorder><team>10167</team><id>4263317</id><n>156</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>15</value><value>15</value></coordinates><elapsed>36</elapsed><player2>74034</player2><subtype>distance</subtype><player1>195199</player1><sortorder>3</sortorder><team>7943</team><id>4263519</id><n>231</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>61</elapsed><player1>364520</player1><sortorder>3</sortorder><team>7943</team><id>4264114</id><n>431</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>20</value><value>13</value></coordinates><elapsed>65</elapsed><player2>195199</player2><subtype>distance</subtype><player1>27685</player1><sortorder>2</sortorder><team>7943</team><id>4264168</id><n>462</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>26</value><value>56</value></coordinates><elapsed>51</elapsed><player2>37412</player2><subtype>distance</subtype><player1>36615</player1><sortorder>2</sortorder><team>8456</team><id>3976212</id><n>162</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>59</value></coordinates><elapsed>80</elapsed><player2>38807</player2><subtype>shot</subtype><player1>30631</player1><sortorder>0</sortorder><team>8456</team><id>3976604</id><n>252</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>65</value></coordinates><elapsed>88</elapsed><player2>37412</player2><subtype>shot</subtype><player1>31291</player1><sortorder>2</sortorder><team>8456</team><id>3976724</id><n>297</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>72</elapsed><player1>154239</player1><sortorder>0</sortorder><team>10233</team><id>3177516</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>244835</player1><sortorder>1</sortorder><team>8524</team><id>3177545</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>28</value><value>62</value></coordinates><elapsed>4</elapsed><player2>40758</player2><subtype>shot</subtype><player1>131991</player1><sortorder>4</sortorder><team>7794</team><id>4682429</id><n>31</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>90</elapsed><player1>131995</player1><sortorder>3</sortorder><team>8689</team><id>4683764</id><n>403</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>34</elapsed><subtype>loose_ball</subtype><player1>30829</player1><sortorder>2</sortorder><team>10260</team><id>725695</id><n>318</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>6</elapsed><player2>30724</player2><subtype>shot</subtype><player1>30930</player1><sortorder>2</sortorder><team>8636</team><id>620931</id><n>166</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>10</elapsed><player1>35724</player1><sortorder>3</sortorder><team>8636</team><id>620958</id><n>169</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>58</elapsed><subtype>shot</subtype><player1>35724</player1><sortorder>1</sortorder><team>8636</team><id>621381</id><n>207</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><coordinates><value>32</value><value>9</value></coordinates><elapsed>9</elapsed><player2>354467</player2><subtype>deflected</subtype><player1>488139</player1><sortorder>4</sortorder><team>9829</team><id>4437011</id><n>67</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>14</value><value>64</value></coordinates><elapsed>26</elapsed><player2>21414</player2><subtype>shot</subtype><player1>169865</player1><sortorder>4</sortorder><team>9941</team><id>4437273</id><n>124</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>45</elapsed><player1>413557</player1><sortorder>4</sortorder><team>9829</team><id>4437600</id><n>193</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>16</value><value>20</value></coordinates><elapsed>56</elapsed><player2>24493</player2><subtype>header</subtype><player1>37549</player1><sortorder>1</sortorder><team>9829</team><id>4437885</id><n>230</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>393</event_incident_typefk><coordinates><value>30</value><value>9</value></coordinates><elapsed>90</elapsed><player2>37549</player2><subtype>shot</subtype><player1>239259</player1><sortorder>9</sortorder><team>9829</team><id>4438498</id><n>359</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>22</elapsed><player2>2802</player2><subtype>volley</subtype><player1>276121</player1><sortorder>1</sortorder><team>10003</team><id>2955992</id><n>199</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>83</elapsed><player2>118528</player2><subtype>shot</subtype><player1>2802</player1><sortorder>3</sortorder><team>10003</team><id>2956619</id><n>270</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>38</elapsed><player1>129944</player1><sortorder>0</sortorder><team>9788</team><id>2011265</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>77</elapsed><player1>242709</player1><sortorder>0</sortorder><team>8226</team><id>2011919</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player1>141160</player1><sortorder>0</sortorder><team>8226</team><id>2011979</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player1>25538</player1><sortorder>0</sortorder><team>8481</team><id>1556489</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>76</elapsed><player1>26242</player1><sortorder>0</sortorder><team>8481</team><id>1557061</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>86</elapsed><player1>46242</player1><sortorder>0</sortorder><team>8481</team><id>1557212</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>25</elapsed><player1>169193</player1><sortorder>0</sortorder><team>9748</team><id>3163629</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>82</elapsed><player1>169865</player1><sortorder>0</sortorder><team>9941</team><id>3163639</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>14</elapsed><player1>42425</player1><sortorder>0</sortorder><team>8533</team><id>1149683</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>22</elapsed><player1>42431</player1><sortorder>0</sortorder><team>8530</team><id>1149792</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>83</elapsed><player1>24448</player1><sortorder>0</sortorder><team>8533</team><id>1150304</id><n>20</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>64</elapsed><player1>167254</player1><sortorder>0</sortorder><team>8481</team><id>1766717</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>85</elapsed><player1>37560</player1><sortorder>0</sortorder><team>8521</team><id>1766975</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>87</elapsed><player1>39994</player1><sortorder>0</sortorder><team>8481</team><id>1767011</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>3</elapsed><subtype>shot</subtype><player1>33639</player1><sortorder>3</sortorder><team>8636</team><id>770650</id><n>230</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>5</elapsed><player2>34305</player2><subtype>shot</subtype><player1>30549</player1><sortorder>1</sortorder><team>8636</team><id>770658</id><n>234</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>32</elapsed><player2>30878</player2><subtype>header</subtype><player1>39774</player1><sortorder>3</sortorder><team>8636</team><id>770909</id><n>255</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>37</elapsed><player2>27668</player2><subtype>shot</subtype><player1>18925</player1><sortorder>6</sortorder><team>9875</team><id>770963</id><n>279</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>67</elapsed><player1>237541</player1><sortorder>0</sortorder><team>8357</team><id>2317706</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>29</elapsed><subtype>direct_freekick</subtype><player1>24159</player1><sortorder>0</sortorder><team>8472</team><id>3207836</id><n>269</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><elapsed>41</elapsed><player2>24159</player2><subtype>deflected</subtype><player1>144996</player1><sortorder>0</sortorder><team>8472</team><id>3207973</id><n>262</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>52</elapsed><player2>34574</player2><subtype>header</subtype><player1>23283</player1><sortorder>3</sortorder><team>9879</team><id>3208152</id><n>292</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>69</elapsed><player2>144996</player2><subtype>shot</subtype><player1>24159</player1><sortorder>5</sortorder><team>8472</team><id>3208358</id><n>326</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>85</elapsed><player1>24159</player1><sortorder>2</sortorder><team>8472</team><id>3208539</id><n>314</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>31</value><value>5</value></coordinates><elapsed>5</elapsed><player2>94086</player2><subtype>shot</subtype><player1>19243</player1><sortorder>1</sortorder><team>8455</team><id>5284180</id><n>55</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>24</value><value>14</value></coordinates><elapsed>9</elapsed><subtype>distance</subtype><player1>150250</player1><sortorder>3</sortorder><team>8455</team><id>5284277</id><n>121</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>5</value></coordinates><elapsed>17</elapsed><player2>19243</player2><subtype>shot</subtype><player1>94086</player1><sortorder>1</sortorder><team>8455</team><id>5284414</id><n>200</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>9</value></coordinates><elapsed>59</elapsed><player2>30613</player2><subtype>shot</subtype><player1>150250</player1><sortorder>3</sortorder><team>8455</team><id>5285261</id><n>588</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>6</value></coordinates><elapsed>83</elapsed><player2>72541</player2><subtype>shot</subtype><player1>303059</player1><sortorder>2</sortorder><team>8455</team><id>5285884</id><n>709</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>21</value><value>55</value></coordinates><elapsed>90</elapsed><player2>160243</player2><subtype>distance</subtype><player1>166422</player1><sortorder>1</sortorder><team>10261</team><id>5286023</id><n>806</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>7</elapsed><player2>94652</player2><subtype>shot</subtype><player1>144993</player1><sortorder>4</sortorder><team>9789</team><id>1727136</id><n>288</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>25</elapsed><player2>37374</player2><subtype>shot</subtype><player1>94685</player1><sortorder>7</sortorder><team>9789</team><id>1727214</id><n>314</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>44</elapsed><player2>37374</player2><subtype>shot</subtype><player1>93447</player1><sortorder>4</sortorder><team>9789</team><id>1727414</id><n>339</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>50</elapsed><player2>94652</player2><subtype>shot</subtype><player1>93447</player1><sortorder>5</sortorder><team>9789</team><id>1727647</id><n>352</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>66</elapsed><player2>43319</player2><subtype>header</subtype><player1>30707</player1><sortorder>4</sortorder><team>9789</team><id>1727760</id><n>362</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>19</elapsed><player2>23792</player2><subtype>shot</subtype><player1>37234</player1><sortorder>22</sortorder><team>8466</team><id>3047787</id><n>227</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>83</elapsed><subtype>shot</subtype><player1>109491</player1><sortorder>22</sortorder><team>8466</team><id>3048603</id><n>324</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>26</value><value>58</value></coordinates><elapsed>28</elapsed><player2>157729</player2><subtype>distance</subtype><player1>144996</player1><sortorder>1</sortorder><team>10003</team><id>3645551</id><n>239</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>167</event_incident_typefk><coordinates><value>21</value><value>3</value></coordinates><elapsed>53</elapsed><subtype>bicycle_kick</subtype><player1>30829</player1><sortorder>2</sortorder><team>10260</team><id>3645613</id><n>224</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>24</value><value>61</value></coordinates><elapsed>72</elapsed><player2>38831</player2><subtype>volley</subtype><player1>157729</player1><sortorder>3</sortorder><team>10003</team><id>3645646</id><n>285</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>7</elapsed><player2>25150</player2><subtype>distance</subtype><player1>23949</player1><sortorder>1</sortorder><team>8472</team><id>785959</id><n>260</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>390</event_incident_typefk><elapsed>51</elapsed><player2>24150</player2><subtype>bicycle_kick</subtype><player1>27430</player1><sortorder>3</sortorder><team>10260</team><id>786291</id><n>300</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>58</elapsed><player2>17866</player2><subtype>header</subtype><player1>30988</player1><sortorder>5</sortorder><team>8472</team><id>786350</id><n>311</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>115</event_incident_typefk><elapsed>90</elapsed><player1>24740</player1><sortorder>2</sortorder><team>8472</team><id>786537</id><n>359</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player1>196188</player1><sortorder>0</sortorder><team>8394</team><id>2671204</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>38</elapsed><player1>30893</player1><sortorder>0</sortorder><team>8633</team><id>2671283</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>19</value><value>58</value></coordinates><elapsed>45</elapsed><player2>196366</player2><subtype>volley</subtype><player1>42860</player1><sortorder>4</sortorder><team>8697</team><id>4768467</id><n>211</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>10</value></coordinates><elapsed>49</elapsed><player2>212819</player2><subtype>shot</subtype><player1>50661</player1><sortorder>2</sortorder><team>8226</team><id>4768906</id><n>277</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><coordinates><value>22</value><value>65</value></coordinates><elapsed>84</elapsed><subtype>shot</subtype><player1>35852</player1><sortorder>4</sortorder><team>8697</team><id>4769492</id><n>400</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>65</value></coordinates><elapsed>90</elapsed><player2>25366</player2><subtype>shot</subtype><player1>196366</player1><sortorder>7</sortorder><team>8697</team><id>4769626</id><n>454</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>67</value></coordinates><elapsed>90</elapsed><player2>35852</player2><subtype>shot</subtype><player1>42860</player1><sortorder>11</sortorder><team>8697</team><id>4769662</id><n>472</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>89</elapsed><player1>39306</player1><sortorder>0</sortorder><team>9880</team><id>1433098</id><n>19</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>22</elapsed><player1>30714</player1><sortorder>0</sortorder><team>8686</team><id>2564118</id><n>24</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>30991</player1><sortorder>0</sortorder><team>8636</team><id>2564126</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>3</elapsed><subtype>saved_back_into_play</subtype><player1>248689</player1><sortorder>0</sortorder><team>8592</team><id>4208018</id><n>16</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>131</event_incident_typefk><coordinates><value>19</value><value>4</value></coordinates><elapsed>45</elapsed><subtype>loose_ball</subtype><player1>95955</player1><sortorder>8</sortorder><team>8592</team><id>4208391</id><n>281</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><coordinates><value>25</value><value>2</value></coordinates><elapsed>63</elapsed><subtype>loose_ball</subtype><player1>38098</player1><sortorder>3</sortorder><team>8592</team><id>4208570</id><n>421</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>66</value></coordinates><elapsed>67</elapsed><player2>468931</player2><subtype>shot</subtype><player1>11324</player1><sortorder>4</sortorder><team>7819</team><id>4208597</id><n>446</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>28</value><value>62</value></coordinates><elapsed>70</elapsed><player2>319300</player2><subtype>shot</subtype><player1>279172</player1><sortorder>1</sortorder><team>7819</team><id>4208615</id><n>456</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>29</value><value>58</value></coordinates><elapsed>87</elapsed><player2>210126</player2><subtype>distance</subtype><player1>230900</player1><sortorder>0</sortorder><team>7819</team><id>4208741</id><n>567</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>dg</comment><event_incident_typefk>299</event_incident_typefk><coordinates><value>22</value><value>67</value></coordinates><elapsed>40</elapsed><subtype>header</subtype><player1>37451</player1><sortorder>3</sortorder><team>9783</team><id>4060157</id><n>317</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>26</elapsed><player1>30284</player1><sortorder>0</sortorder><team>8551</team><id>755266</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>72</elapsed><player1>30453</player1><sortorder>0</sortorder><team>8686</team><id>755724</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player1>24130</player1><sortorder>0</sortorder><team>8686</team><id>755882</id><n>29</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>38</elapsed><player1>18925</player1><sortorder>0</sortorder><team>9875</team><id>1376948</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>87</elapsed><player1>49677</player1><sortorder>0</sortorder><team>9875</team><id>1377612</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>23</value><value>54</value></coordinates><elapsed>54</elapsed><subtype>direct_freekick</subtype><player1>45413</player1><sortorder>0</sortorder><team>8533</team><id>4152240</id><n>351</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>21</elapsed><player1>30872</player1><sortorder>0</sortorder><team>9823</team><id>3008273</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>22</elapsed><player1>75447</player1><sortorder>0</sortorder><team>9823</team><id>3008277</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>75</elapsed><player1>30924</player1><sortorder>0</sortorder><team>9823</team><id>3008517</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>85</elapsed><player1>25366</player1><sortorder>0</sortorder><team>9823</team><id>3008566</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>84</elapsed><player2>30646</player2><subtype>shot</subtype><player1>23170</player1><sortorder>1</sortorder><team>8655</team><id>413122</id><n>357</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>2</elapsed><player1>26051</player1><sortorder>0</sortorder><team>9873</team><id>1915179</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>43</elapsed><player1>40758</player1><sortorder>0</sortorder><team>9873</team><id>1915461</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>93356</player1><sortorder>0</sortorder><team>9836</team><id>1916323</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>76</elapsed><player1>196805</player1><sortorder>0</sortorder><team>7794</team><id>2926564</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player1>287224</player1><sortorder>0</sortorder><team>7794</team><id>2926571</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>27</value><value>3</value></coordinates><elapsed>26</elapsed><subtype>shot</subtype><player1>26399</player1><sortorder>3</sortorder><team>10249</team><id>4825206</id><n>157</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>25</value><value>7</value></coordinates><elapsed>45</elapsed><player1>267894</player1><sortorder>1</sortorder><team>9829</team><id>4825267</id><n>215</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>30</value><value>65</value></coordinates><elapsed>56</elapsed><subtype>shot</subtype><player1>29590</player1><sortorder>4</sortorder><team>9829</team><id>4825345</id><n>301</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>67</value></coordinates><elapsed>65</elapsed><player2>38336</player2><subtype>shot</subtype><player1>468931</player1><sortorder>2</sortorder><team>9829</team><id>4825372</id><n>347</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><elapsed_plus>5</elapsed_plus><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>90</elapsed><player1>359188</player1><sortorder>20</sortorder><team>9829</team><id>4825496</id><n>525</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>38</elapsed><player1>19327</player1><sortorder>0</sortorder><team>9906</team><id>1989376</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>22543</player1><sortorder>0</sortorder><team>9906</team><id>1989404</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player1>18904</player1><sortorder>0</sortorder><team>8226</team><id>2912257</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>52</elapsed><player1>71605</player1><sortorder>0</sortorder><team>8226</team><id>2912338</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>54</elapsed><player1>37042</player1><sortorder>0</sortorder><team>8165</team><id>2912355</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>57</elapsed><player1>177720</player1><sortorder>0</sortorder><team>8165</team><id>2912358</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>28</value><value>65</value></coordinates><elapsed>50</elapsed><player2>30981</player2><subtype>tap_in</subtype><player1>25773</player1><sortorder>3</sortorder><team>8634</team><id>5559409</id><n>216</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>61</value></coordinates><elapsed>81</elapsed><player2>30981</player2><subtype>shot</subtype><player1>40636</player1><sortorder>3</sortorder><team>8634</team><id>5559554</id><n>330</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>69</elapsed><player1>37520</player1><sortorder>0</sortorder><team>8530</team><id>437109</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>80</elapsed><player1>41865</player1><sortorder>0</sortorder><team>8690</team><id>437335</id><n>28</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><coordinates><value>19</value><value>6</value></coordinates><elapsed>17</elapsed><subtype>loose_ball</subtype><player1>215384</player1><sortorder>2</sortorder><team>8668</team><id>5037386</id><n>128</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>30</value><value>7</value></coordinates><elapsed>29</elapsed><player2>77690</player2><subtype>header</subtype><player1>181276</player1><sortorder>0</sortorder><team>8668</team><id>5037650</id><n>262</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><coordinates><value>26</value><value>7</value></coordinates><elapsed>43</elapsed><subtype>loose_ball</subtype><player1>215384</player1><sortorder>2</sortorder><team>8668</team><id>5038068</id><n>355</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>8</value></coordinates><elapsed>59</elapsed><player2>215384</player2><subtype>shot</subtype><player1>181276</player1><sortorder>1</sortorder><team>8668</team><id>5038865</id><n>474</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>npm</comment><event_incident_typefk>159</event_incident_typefk><elapsed>20</elapsed><subtype>saved</subtype><player1>30714</player1><sortorder>3</sortorder><team>8686</team><id>1327451</id><n>33</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>30</elapsed><player2>30714</player2><subtype>shot</subtype><player1>41023</player1><sortorder>1</sortorder><team>8686</team><id>1327539</id><n>392</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>289</event_incident_typefk><elapsed>88</elapsed><sortorder>1</sortorder><team>8686</team><id>1328594</id><n>303</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>51</elapsed><player2>38886</player2><subtype>shot</subtype><player1>41294</player1><sortorder>0</sortorder><team>9869</team><id>1378192</id><n>235</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>53</elapsed><player2>46469</player2><subtype>volley</subtype><player1>75489</player1><sortorder>1</sortorder><team>9825</team><id>3464751</id><n>212</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>288</event_incident_typefk><elapsed>62</elapsed><subtype>deflected</subtype><player1>214685</player1><sortorder>1</sortorder><team>9825</team><id>3465134</id><n>217</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>24</value><value>4</value></coordinates><elapsed>32</elapsed><player2>156726</player2><subtype>tap_in</subtype><player1>93447</player1><sortorder>9</sortorder><team>9823</team><id>5237349</id><n>612</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>882</event_incident_typefk><coordinates><value>27</value><value>6</value></coordinates><elapsed>64</elapsed><player2>30894</player2><subtype>lob</subtype><player1>93447</player1><sortorder>1</sortorder><team>9823</team><id>5237867</id><n>666</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>66</value></coordinates><elapsed>8</elapsed><player2>156008</player2><subtype>shot</subtype><player1>246575</player1><sortorder>2</sortorder><team>8650</team><id>3683774</id><n>222</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>49</elapsed><player1>30618</player1><sortorder>0</sortorder><team>8650</team><id>3684467</id><n>263</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>32</value><value>61</value></coordinates><elapsed>60</elapsed><subtype>shot</subtype><player1>314605</player1><sortorder>1</sortorder><team>8650</team><id>3684628</id><n>279</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>70</elapsed><player1>49677</player1><sortorder>0</sortorder><team>8540</team><id>903543</id><n>20</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>1</elapsed><player1>134232</player1><sortorder>0</sortorder><team>8639</team><id>2549899</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>21</elapsed><player1>167555</player1><sortorder>0</sortorder><team>8481</team><id>2549937</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>32</elapsed><player1>25496</player1><sortorder>0</sortorder><team>8639</team><id>2549940</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>82</elapsed><player1>93994</player1><sortorder>0</sortorder><team>8481</team><id>2550048</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>42</elapsed><player1>24459</player1><sortorder>0</sortorder><team>8530</team><id>2606634</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>26</elapsed><player2>31906</player2><player1>134232</player1><sortorder>0</sortorder><team>8639</team><id>3368312</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>42</elapsed><player1>31906</player1><sortorder>0</sortorder><team>8639</team><id>3368360</id><n>30</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player2>435214</player2><player1>195299</player1><sortorder>0</sortorder><team>9941</team><id>3368619</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>15</elapsed><player2>37139</player2><subtype>shot</subtype><player1>156008</player1><sortorder>2</sortorder><team>8650</team><id>1623134</id><n>283</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>52</elapsed><player2>39109</player2><subtype>header</subtype><player1>22764</player1><sortorder>1</sortorder><team>8650</team><id>1623443</id><n>314</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>53</elapsed><player2>37139</player2><subtype>shot</subtype><player1>39109</player1><sortorder>1</sortorder><team>8650</team><id>1623454</id><n>343</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>80</event_incident_typefk><elapsed>90</elapsed><subtype>shot</subtype><player1>30753</player1><sortorder>3</sortorder><team>8559</team><id>1623736</id><n>382</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>8</value></coordinates><elapsed>62</elapsed><player2>41189</player2><subtype>shot</subtype><player1>207617</player1><sortorder>2</sortorder><team>9851</team><id>5099753</id><n>433</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><coordinates><value>23</value><value>65</value></coordinates><elapsed>79</elapsed><subtype>volley</subtype><player1>303345</player1><sortorder>2</sortorder><team>7819</team><id>5099872</id><n>495</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>64</value></coordinates><elapsed>10</elapsed><player2>141370</player2><subtype>shot</subtype><player1>93447</player1><sortorder>2</sortorder><team>9823</team><id>3678536</id><n>177</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>18</value><value>4</value></coordinates><elapsed>62</elapsed><subtype>shot</subtype><player1>68253</player1><sortorder>3</sortorder><team>10189</team><id>3679291</id><n>225</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>16</elapsed><player1>72436</player1><sortorder>1</sortorder><team>9817</team><id>5281409</id><n>139</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>406</event_incident_typefk><coordinates><value>23</value><value>7</value></coordinates><elapsed>45</elapsed><player2>169721</player2><subtype>header</subtype><player1>30960</player1><sortorder>4</sortorder><team>9826</team><id>5282223</id><n>412</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>27</value><value>65</value></coordinates><elapsed>82</elapsed><subtype>shot</subtype><player1>72436</player1><sortorder>7</sortorder><team>9817</team><id>5283458</id><n>779</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>33</elapsed><player1>177688</player1><sortorder>0</sortorder><team>8551</team><id>2595484</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>41</elapsed><player1>39450</player1><sortorder>0</sortorder><team>9857</team><id>2595555</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>3</value></coordinates><elapsed>50</elapsed><player2>33116</player2><subtype>shot</subtype><player1>38435</player1><sortorder>1</sortorder><team>10242</team><id>5502075</id><n>309</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>61</elapsed><player1>26420</player1><sortorder>0</sortorder><team>10242</team><id>5502319</id><n>374</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>67</value></coordinates><elapsed>64</elapsed><player2>181197</player2><subtype>shot</subtype><player1>254702</player1><sortorder>1</sortorder><team>9837</team><id>5502374</id><n>414</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>56</elapsed><player1>38567</player1><sortorder>0</sortorder><team>8696</team><id>570270</id><n>223</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>65</elapsed><subtype>shot</subtype><player1>30981</player1><sortorder>2</sortorder><team>8634</team><id>570342</id><n>234</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>81</elapsed><subtype>shot</subtype><player1>30981</player1><sortorder>2</sortorder><team>8634</team><id>570497</id><n>244</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>29</elapsed><player2>42008</player2><subtype>header</subtype><player1>24448</player1><sortorder>1</sortorder><team>8533</team><id>1288579</id><n>232</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>82</elapsed><player2>42651</player2><subtype>shot</subtype><player1>42425</player1><sortorder>7</sortorder><team>8533</team><id>1289620</id><n>286</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>80</event_incident_typefk><elapsed>90</elapsed><subtype>shot</subtype><player1>33639</player1><sortorder>6</sortorder><team>8636</team><id>1289766</id><n>294</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>23</elapsed><player1>30714</player1><sortorder>0</sortorder><team>8686</team><id>563747</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>31</elapsed><player1>49677</player1><sortorder>0</sortorder><team>8540</team><id>563872</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>39376</player1><sortorder>0</sortorder><team>8686</team><id>564182</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>65</elapsed><player2>24800</player2><subtype>shot</subtype><player1>30853</player1><sortorder>1</sortorder><team>8650</team><id>813584</id><n>318</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>6</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>95327</player2><subtype>shot</subtype><player1>41175</player1><sortorder>2</sortorder><team>8650</team><id>814044</id><n>356</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>dg</comment><event_incident_typefk>289</event_incident_typefk><elapsed>67</elapsed><del>1</del><sortorder>2</sortorder><n>293</n><type>goal</type><id>3888265</id></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>18</value><value>13</value></coordinates><elapsed>81</elapsed><subtype>distance</subtype><player1>42651</player1><sortorder>6</sortorder><team>8540</team><id>3888562</id><n>309</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>649</event_incident_typefk><elapsed>13</elapsed><subtype>tap_in</subtype><player1>150509</player1><sortorder>1</sortorder><team>8540</team><id>1761076</id><n>286</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>52</elapsed><player2>150509</player2><subtype>header</subtype><player1>18823</player1><sortorder>2</sortorder><team>8540</team><id>1761640</id><n>341</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>75</elapsed><player2>206701</player2><subtype>shot</subtype><player1>147951</player1><sortorder>1</sortorder><team>8540</team><id>1761869</id><n>366</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>87</elapsed><player2>56654</player2><subtype>distance</subtype><player1>190872</player1><sortorder>1</sortorder><team>9857</team><id>1761995</id><n>374</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>40</elapsed><player2>30711</player2><subtype>shot</subtype><player1>27598</player1><sortorder>2</sortorder><team>9888</team><id>1904621</id><n>273</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>12</elapsed><player1>489288</player1><sortorder>0</sortorder><team>8611</team><id>4287600</id><n>8</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>24</elapsed><player2>484858</player2><player1>277608</player1><sortorder>0</sortorder><team>8674</team><id>4287679</id><n>13</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>58</elapsed><player2>360559</player2><player1>503659</player1><sortorder>0</sortorder><team>8611</team><id>4288336</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>80</elapsed><player2>147600</player2><player1>359461</player1><sortorder>0</sortorder><team>8674</team><id>4288515</id><n>47</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>31</elapsed><player1>182106</player1><sortorder>0</sortorder><team>10167</team><id>2325100</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>86</elapsed><player1>39345</player1><sortorder>0</sortorder><team>10167</team><id>2325325</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>57</elapsed><player1>41240</player1><sortorder>0</sortorder><team>9873</team><id>2716690</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>36</elapsed><player1>26288</player1><sortorder>0</sortorder><team>8576</team><id>2569089</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>53</elapsed><player1>74169</player1><sortorder>0</sortorder><team>4087</team><id>2569167</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>49</elapsed><player1>25957</player1><sortorder>0</sortorder><team>9788</team><id>2455257</id><n>14</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>77</elapsed><player1>188498</player1><sortorder>0</sortorder><team>8358</team><id>2455555</id><n>16</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>27731</player2><subtype>shot</subtype><player1>46875</player1><sortorder>4</sortorder><team>8600</team><id>1203107</id><n>393</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>50</elapsed><player2>27234</player2><subtype>shot</subtype><player1>27642</player1><sortorder>10</sortorder><team>10269</team><id>1758828</id><n>302</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>53</elapsed><player2>22313</player2><subtype>header</subtype><player1>196366</player1><sortorder>10</sortorder><team>9905</team><id>1758834</id><n>306</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>60</elapsed><player1>42873</player1><sortorder>0</sortorder><team>9905</team><id>1758848</id><n>267</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>64</elapsed><subtype>shot</subtype><player1>196366</player1><sortorder>6</sortorder><team>9905</team><id>1758857</id><n>301</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>14</elapsed><player1>74734</player1><sortorder>0</sortorder><team>8581</team><id>1676460</id><n>22</n><type>goal</type><goal_type>p</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>58</elapsed><player1>74734</player1><sortorder>0</sortorder><team>8581</team><id>1677304</id><n>25</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>72</elapsed><player1>70812</player1><sortorder>0</sortorder><team>8558</team><id>1677492</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>76</elapsed><player1>38550</player1><sortorder>0</sortorder><team>8581</team><id>1677593</id><n>29</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>155738</player1><sortorder>1</sortorder><team>8686</team><id>3227844</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>49</elapsed><player1>24516</player1><sortorder>0</sortorder><team>9876</team><id>3227864</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>60</elapsed><player1>37950</player1><sortorder>0</sortorder><team>8686</team><id>3227878</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>83</elapsed><player1>30714</player1><sortorder>0</sortorder><team>8686</team><id>3227906</id><n>28</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>7</elapsed><player2>118929</player2><subtype>shot</subtype><player1>49825</player1><sortorder>2</sortorder><team>8528</team><id>2065239</id><n>233</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>8</elapsed><player2>28901</player2><subtype>shot</subtype><player1>118929</player1><sortorder>2</sortorder><team>8528</team><id>2065242</id><n>220</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>21</elapsed><player2>31435</player2><subtype>header</subtype><player1>26005</player1><sortorder>5</sortorder><team>9825</team><id>2065282</id><n>248</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>16</elapsed><player2>24737</player2><subtype>shot</subtype><player1>23954</player1><sortorder>5</sortorder><team>8659</team><id>1776604</id><n>315</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>21</elapsed><player1>30753</player1><sortorder>1</sortorder><team>8559</team><id>1776683</id><n>322</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>56</elapsed><player2>23282</player2><subtype>header</subtype><player1>23293</player1><sortorder>2</sortorder><team>8659</team><id>1777540</id><n>386</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>40</elapsed><player1>30840</player1><sortorder>0</sortorder><team>8586</team><id>1715283</id><n>289</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><elapsed>48</elapsed><player2>33852</player2><subtype>tap_in</subtype><player1>35411</player1><sortorder>1</sortorder><team>10261</team><id>1715469</id><n>266</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>68</elapsed><player2>30960</player2><subtype>shot</subtype><player1>30348</player1><sortorder>0</sortorder><team>8586</team><id>1715643</id><n>274</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>86</elapsed><player2>24890</player2><subtype>shot</subtype><player1>24225</player1><sortorder>2</sortorder><team>10261</team><id>1715837</id><n>323</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>2</elapsed><player2>30981</player2><subtype>shot</subtype><player1>150250</player1><sortorder>4</sortorder><team>8634</team><id>1375383</id><n>194</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>33</elapsed><player1>30981</player1><sortorder>1</sortorder><team>8634</team><id>1375554</id><n>225</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>57</elapsed><player2>150250</player2><subtype>shot</subtype><player1>30955</player1><sortorder>1</sortorder><team>8634</team><id>1375696</id><n>246</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>26</elapsed><player1>74455</player1><sortorder>0</sortorder><team>9865</team><id>561304</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>39</elapsed><player1>43329</player1><sortorder>0</sortorder><team>9865</team><id>561376</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>65</elapsed><player1>97257</player1><sortorder>0</sortorder><team>8315</team><id>561549</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>83</elapsed><player2>39618</player2><subtype>shot</subtype><player1>24003</player1><sortorder>4</sortorder><team>8668</team><id>895535</id><n>305</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>24160</player2><subtype>shot</subtype><player1>36012</player1><sortorder>1</sortorder><team>8668</team><id>895618</id><n>321</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>61</elapsed><player1>39311</player1><sortorder>0</sortorder><team>9880</team><id>1693755</id><n>14</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>7</value></coordinates><elapsed>77</elapsed><player2>182925</player2><subtype>shot</subtype><player1>303334</player1><sortorder>1</sortorder><team>9748</team><id>4356348</id><n>378</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>26</value><value>5</value></coordinates><elapsed>85</elapsed><player2>409161</player2><subtype>tap_in</subtype><player1>169193</player1><sortorder>4</sortorder><team>9748</team><id>4356418</id><n>434</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>8</elapsed><player1>206242</player1><sortorder>0</sortorder><team>8524</team><id>2618288</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>12</elapsed><player1>128020</player1><sortorder>0</sortorder><team>8686</team><id>2618289</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player1>96398</player1><sortorder>0</sortorder><team>8686</team><id>2618366</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>206242</player1><sortorder>0</sortorder><team>8524</team><id>2618422</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>71</elapsed><player1>71500</player1><sortorder>0</sortorder><team>8686</team><id>2618686</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>10</elapsed><player2>96643</player2><subtype>header</subtype><player1>33639</player1><sortorder>1</sortorder><team>8634</team><id>687111</id><n>277</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>73</elapsed><subtype>direct_freekick</subtype><player1>38398</player1><sortorder>0</sortorder><team>8661</team><id>687465</id><n>351</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>78</elapsed><player2>37411</player2><subtype>header</subtype><player1>31498</player1><sortorder>6</sortorder><team>8661</team><id>687507</id><n>357</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><elapsed_plus>4</elapsed_plus><event_incident_typefk>23</event_incident_typefk><elapsed>90</elapsed><subtype>post</subtype><player1>33639</player1><sortorder>0</sortorder><team>8634</team><id>687615</id><n>261</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>12</elapsed><player1>25519</player1><sortorder>0</sortorder><team>8533</team><id>2643570</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>43</elapsed><player1>38920</player1><sortorder>0</sortorder><team>8533</team><id>2643689</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>58</elapsed><player1>49677</player1><sortorder>0</sortorder><team>9875</team><id>2643855</id><n>14</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>4</elapsed><player1>340790</player1><sortorder>0</sortorder><team>7896</team><id>5639935</id><n>6</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>20</event_incident_typefk><elapsed>11</elapsed><player1>178142</player1><sortorder>0</sortorder><team>7896</team><id>5639941</id><n>25</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>75</elapsed><player1>614454</player1><sortorder>0</sortorder><team>7896</team><id>5640019</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>882</event_incident_typefk><coordinates><value>18</value><value>9</value></coordinates><elapsed>40</elapsed><player2>77741</player2><subtype>lob</subtype><player1>26392</player1><sortorder>3</sortorder><team>8302</team><id>5182046</id><n>471</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>7</value></coordinates><elapsed>42</elapsed><player2>213805</player2><subtype>shot</subtype><player1>26392</player1><sortorder>3</sortorder><team>8302</team><id>5182080</id><n>491</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>21</value><value>65</value></coordinates><elapsed>72</elapsed><subtype>shot</subtype><player1>213653</player1><sortorder>2</sortorder><team>9864</team><id>5182628</id><n>907</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>10</elapsed><player2>106228</player2><subtype>shot</subtype><player1>29581</player1><sortorder>3</sortorder><team>8528</team><id>1540086</id><n>155</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>392</event_incident_typefk><elapsed>17</elapsed><player2>38609</player2><subtype>direct_freekick</subtype><player1>23354</player1><sortorder>0</sortorder><team>10252</team><id>1540207</id><n>182</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>12</elapsed><player1>39987</player1><sortorder>0</sortorder><team>8592</team><id>1550290</id><n>15</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>59</elapsed><player1>154280</player1><sortorder>0</sortorder><team>8592</team><id>1550729</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>81</elapsed><player1>30670</player1><sortorder>0</sortorder><team>8592</team><id>1550858</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>7</elapsed><subtype>shot</subtype><player1>31199</player1><sortorder>1</sortorder><team>8178</team><id>1420474</id><n>222</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>16</elapsed><subtype>shot</subtype><player1>27234</player1><sortorder>3</sortorder><team>10269</team><id>1420588</id><n>230</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>41</elapsed><subtype>loose_ball</subtype><player1>27427</player1><sortorder>5</sortorder><team>8178</team><id>1420727</id><n>251</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>52</elapsed><subtype>distance</subtype><player1>25772</player1><sortorder>2</sortorder><team>10269</team><id>1421033</id><n>266</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>299</event_incident_typefk><elapsed>73</elapsed><subtype>header</subtype><player1>27642</player1><sortorder>0</sortorder><team>10269</team><id>1421224</id><n>91</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><elapsed>81</elapsed><subtype>header</subtype><player1>58354</player1><sortorder>2</sortorder><team>8178</team><id>1421266</id><n>296</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>80</event_incident_typefk><elapsed>90</elapsed><subtype>shot</subtype><player1>31199</player1><sortorder>2</sortorder><team>8178</team><id>1421302</id><n>306</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>20</value><value>57</value></coordinates><elapsed>62</elapsed><subtype>shot</subtype><player1>614449</player1><sortorder>3</sortorder><team>8226</team><id>5472975</id><n>504</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><coordinates><value>21</value><value>66</value></coordinates><elapsed>90</elapsed><subtype>loose_ball</subtype><player1>212819</player1><sortorder>3</sortorder><team>8226</team><id>5473704</id><n>734</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>24</elapsed><player1>25759</player1><sortorder>0</sortorder><team>9875</team><id>3160246</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>25</elapsed><player1>30966</player1><sortorder>0</sortorder><team>9875</team><id>3160247</id><n>19</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>50</elapsed><player1>25597</player1><sortorder>0</sortorder><team>9875</team><id>3160250</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>72</elapsed><player1>25759</player1><sortorder>0</sortorder><team>9875</team><id>3160255</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>88</elapsed><player1>488958</player1><sortorder>0</sortorder><team>8543</team><id>3160261</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>150330</player1><sortorder>0</sortorder><team>9875</team><id>3160262</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>39</elapsed><player1>107417</player1><sortorder>0</sortorder><team>8455</team><id>4314361</id><n>198</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>882</event_incident_typefk><coordinates><value>27</value><value>30</value></coordinates><elapsed>44</elapsed><player2>33881</player2><subtype>lob</subtype><player1>39109</player1><sortorder>0</sortorder><team>10194</team><id>4314433</id><n>220</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>20</value><value>6</value></coordinates><elapsed>62</elapsed><player2>107417</player2><subtype>tap_in</subtype><player1>39987</player1><sortorder>3</sortorder><team>8455</team><id>4314914</id><n>351</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>16</elapsed><player2>23678</player2><subtype>shot</subtype><player1>30960</player1><sortorder>3</sortorder><team>9825</team><id>515461</id><n>252</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>16</elapsed><player2>31073</player2><subtype>shot</subtype><player1>31953</player1><sortorder>0</sortorder><team>8658</team><id>987371</id><n>147</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>42</elapsed><player2>31073</player2><subtype>shot</subtype><player1>31953</player1><sortorder>0</sortorder><team>8658</team><id>987600</id><n>173</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>406</event_incident_typefk><elapsed>90</elapsed><player2>25421</player2><subtype>header</subtype><player1>37140</player1><sortorder>1</sortorder><team>8462</team><id>988017</id><n>198</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>21</value><value>69</value></coordinates><elapsed>19</elapsed><player1>42390</player1><sortorder>2</sortorder><team>9876</team><id>5214566</id><n>268</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>25</value><value>6</value></coordinates><elapsed>40</elapsed><player2>168727</player2><subtype>tap_in</subtype><player1>24549</player1><sortorder>1</sortorder><team>9876</team><id>5215061</id><n>240</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>5</elapsed><player1>21446</player1><sortorder>0</sortorder><team>8543</team><id>2351603</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>38</elapsed><player1>30638</player1><sortorder>0</sortorder><team>8543</team><id>2351789</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>74</elapsed><player1>21446</player1><sortorder>0</sortorder><team>8543</team><id>2351920</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>82</elapsed><player1>24448</player1><sortorder>0</sortorder><team>8533</team><id>2351952</id><n>28</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>37</elapsed><player1>40165</player1><sortorder>0</sortorder><team>8558</team><id>1486072</id><n>240</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>50</elapsed><player2>128037</player2><subtype>shot</subtype><player1>37512</player1><sortorder>0</sortorder><team>8696</team><id>1486283</id><n>258</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>74</elapsed><player2>37879</player2><subtype>header</subtype><player1>41157</player1><sortorder>3</sortorder><team>8696</team><id>1486574</id><n>284</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>3</elapsed><player1>38216</player1><sortorder>0</sortorder><team>9790</team><id>719597</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>65</elapsed><player1>39901</player1><sortorder>0</sortorder><team>8358</team><id>719884</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>85</elapsed><player1>179511</player1><sortorder>0</sortorder><team>10249</team><id>1421858</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>64</value></coordinates><elapsed>49</elapsed><player2>213319</player2><subtype>shot</subtype><player1>365672</player1><sortorder>1</sortorder><team>8639</team><id>4787554</id><n>236</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>73</elapsed><subtype>saved_back_into_play</subtype><player1>231199</player1><sortorder>0</sortorder><team>9851</team><id>4787795</id><n>373</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>21</value><value>2</value></coordinates><elapsed>74</elapsed><player2>79246</player2><subtype>tap_in</subtype><player1>231199</player1><sortorder>4</sortorder><team>9851</team><id>4787808</id><n>388</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>npm</comment><event_incident_typefk>22</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>52</elapsed><subtype>missed</subtype><player1>18576</player1><sortorder>0</sortorder><team>10249</team><id>4329307</id><n>306</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>61</value></coordinates><elapsed>53</elapsed><player2>318809</player2><subtype>shot</subtype><player1>243430</player1><sortorder>1</sortorder><team>10228</team><id>5393266</id><n>684</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>23</value><value>4</value></coordinates><elapsed>56</elapsed><player2>158581</player2><subtype>header</subtype><player1>150201</player1><sortorder>1</sortorder><team>8640</team><id>5393305</id><n>740</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>15</elapsed><player1>34082</player1><sortorder>0</sortorder><team>10199</team><id>5084585</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>47</elapsed><player1>493185</player1><sortorder>0</sortorder><team>10192</team><id>5085397</id><n>25</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player1>201704</player1><sortorder>0</sortorder><team>10199</team><id>5085574</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>63</elapsed><player1>71764</player1><sortorder>0</sortorder><team>10192</team><id>5085715</id><n>34</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>84</elapsed><player1>45174</player1><sortorder>0</sortorder><team>10192</team><id>5086195</id><n>49</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>74</elapsed><player1>50345</player1><sortorder>0</sortorder><team>8177</team><id>2936071</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>3</elapsed><player1>33820</player1><sortorder>0</sortorder><team>10281</team><id>402174</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>28</elapsed><player1>43374</player1><sortorder>0</sortorder><team>10281</team><id>402310</id><n>27</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>54</elapsed><player1>37412</player1><sortorder>0</sortorder><team>9906</team><id>402481</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>34</elapsed><player2>30843</player2><subtype>header</subtype><player1>186137</player1><sortorder>1</sortorder><team>10260</team><id>3308732</id><n>269</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>65</elapsed><player2>38994</player2><subtype>header</subtype><player1>30829</player1><sortorder>3</sortorder><team>10260</team><id>3308850</id><n>318</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>82</elapsed><player2>30829</player2><subtype>shot</subtype><player1>113836</player1><sortorder>3</sortorder><team>10260</team><id>3308900</id><n>363</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>15</elapsed><player2>26675</player2><subtype>shot</subtype><player1>30987</player1><sortorder>1</sortorder><team>9790</team><id>835362</id><n>169</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>26</elapsed><player2>28081</player2><subtype>header</subtype><player1>47357</player1><sortorder>1</sortorder><team>9904</team><id>835423</id><n>177</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>44</elapsed><player2>39106</player2><subtype>header</subtype><player1>26675</player1><sortorder>1</sortorder><team>9790</team><id>835708</id><n>196</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>88</elapsed><player1>30821</player1><sortorder>0</sortorder><team>9904</team><id>836523</id><n>231</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>6</value></coordinates><elapsed>7</elapsed><player2>73167</player2><subtype>shot</subtype><player1>144993</player1><sortorder>1</sortorder><team>9789</team><id>5553138</id><n>143</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>7</value></coordinates><elapsed>9</elapsed><player2>144993</player2><subtype>shot</subtype><player1>50345</player1><sortorder>0</sortorder><team>9789</team><id>5553177</id><n>62</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>32</value><value>7</value></coordinates><elapsed>60</elapsed><player2>50345</player2><subtype>shot</subtype><player1>129944</player1><sortorder>1</sortorder><team>9789</team><id>5555064</id><n>405</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>26</value><value>3</value></coordinates><elapsed>77</elapsed><player2>73167</player2><subtype>header</subtype><player1>150565</player1><sortorder>1</sortorder><team>9789</team><id>5555439</id><n>492</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>23</value><value>5</value></coordinates><elapsed>78</elapsed><player2>94685</player2><subtype>header</subtype><player1>150565</player1><sortorder>2</sortorder><team>9789</team><id>5555482</id><n>507</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>61</value></coordinates><elapsed>86</elapsed><player2>58346</player2><subtype>shot</subtype><player1>178812</player1><sortorder>3</sortorder><team>8721</team><id>5555750</id><n>540</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>20</value><value>66</value></coordinates><elapsed>1</elapsed><player2>282678</player2><subtype>header</subtype><player1>607148</player1><sortorder>4</sortorder><team>8560</team><id>4108371</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>21</value><value>7</value></coordinates><elapsed>3</elapsed><player2>28467</player2><subtype>header</subtype><player1>164684</player1><sortorder>1</sortorder><team>8633</team><id>4108422</id><n>35</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><coordinates><value>24</value><value>6</value></coordinates><elapsed>37</elapsed><subtype>volley</subtype><player1>30962</player1><sortorder>7</sortorder><team>8633</team><id>4109240</id><n>248</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>6</value></coordinates><elapsed>52</elapsed><player2>31921</player2><subtype>shot</subtype><player1>26166</player1><sortorder>2</sortorder><team>8633</team><id>4110004</id><n>369</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>12</value><value>10</value></coordinates><elapsed>76</elapsed><player2>191315</player2><subtype>shot</subtype><player1>26166</player1><sortorder>6</sortorder><team>8633</team><id>4110673</id><n>506</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>8</value></coordinates><elapsed>4</elapsed><player2>27475</player2><subtype>shot</subtype><player1>170775</player1><sortorder>1</sortorder><team>9810</team><id>4502333</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>17</value><value>54</value></coordinates><elapsed>6</elapsed><player2>516846</player2><subtype>distance</subtype><player1>208230</player1><sortorder>1</sortorder><team>8178</team><id>4502370</id><n>36</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>20</value><value>7</value></coordinates><elapsed>39</elapsed><subtype>shot</subtype><player1>34420</player1><sortorder>1</sortorder><team>9810</team><id>4503024</id><n>189</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>17</elapsed><player2>30872</player2><subtype>distance</subtype><player1>27300</player1><sortorder>0</sortorder><team>9823</team><id>1323239</id><n>203</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>72</elapsed><player1>30894</player1><sortorder>0</sortorder><team>9823</team><id>1324102</id><n>256</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>79</elapsed><subtype>shot</subtype><player1>30924</player1><sortorder>9</sortorder><team>9823</team><id>1324175</id><n>269</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>43</elapsed><player1>92666</player1><sortorder>0</sortorder><team>8535</team><id>2352235</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>65</elapsed><player1>30709</player1><sortorder>0</sortorder><team>8535</team><id>2352418</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>50</elapsed><player1>75310</player1><sortorder>0</sortorder><team>8302</team><id>2788380</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>33870</player1><sortorder>0</sortorder><team>8371</team><id>2788416</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player1>183350</player1><sortorder>0</sortorder><team>8371</team><id>2788475</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>7</elapsed><player1>8922</player1><sortorder>1</sortorder><team>8668</team><id>2095319</id><n>145</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>16</elapsed><player2>36012</player2><subtype>header</subtype><player1>39618</player1><sortorder>3</sortorder><team>8668</team><id>2095488</id><n>154</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>40</elapsed><player2>36012</player2><subtype>shot</subtype><player1>8922</player1><sortorder>0</sortorder><team>8668</team><id>2095900</id><n>173</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>61</elapsed><player2>36012</player2><subtype>shot</subtype><player1>30876</player1><sortorder>1</sortorder><team>8668</team><id>2096546</id><n>181</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player2>30474</player2><player1>40165</player1><sortorder>1</sortorder><team>9885</team><id>3468359</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>24</value><value>9</value></coordinates><elapsed>28</elapsed><subtype>shot</subtype><player1>269666</player1><sortorder>3</sortorder><team>8460</team><id>3904630</id><n>93</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>21</value><value>66</value></coordinates><elapsed>41</elapsed><player2>36057</player2><subtype>header</subtype><player1>31906</player1><sortorder>1</sortorder><team>8177</team><id>3904810</id><n>138</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>4</value></coordinates><elapsed>53</elapsed><player2>94164</player2><subtype>header</subtype><player1>215804</player1><sortorder>1</sortorder><team>8460</team><id>3905304</id><n>202</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>29</value><value>16</value></coordinates><elapsed>76</elapsed><player2>215804</player2><subtype>distance</subtype><player1>94883</player1><sortorder>0</sortorder><team>8460</team><id>3905698</id><n>283</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>62</value></coordinates><elapsed>34</elapsed><player2>277460</player2><subtype>shot</subtype><player1>562267</player1><sortorder>2</sortorder><team>8593</team><id>4801291</id><n>140</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>25</value><value>55</value></coordinates><elapsed>42</elapsed><player2>298448</player2><subtype>distance</subtype><player1>277460</player1><sortorder>1</sortorder><team>8593</team><id>4801507</id><n>216</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>9</value></coordinates><elapsed>16</elapsed><player2>298448</player2><subtype>shot</subtype><player1>562267</player1><sortorder>2</sortorder><team>8593</team><id>4725165</id><n>88</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>8</value></coordinates><elapsed>20</elapsed><player2>562267</player2><subtype>shot</subtype><player1>298448</player1><sortorder>3</sortorder><team>8593</team><id>4725173</id><n>120</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>22</value><value>7</value></coordinates><elapsed>58</elapsed><player2>178753</player2><subtype>header</subtype><player1>304455</player1><sortorder>2</sortorder><team>8593</team><id>4725295</id><n>304</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>4</value></coordinates><elapsed>74</elapsed><player2>277460</player2><subtype>shot</subtype><player1>562267</player1><sortorder>2</sortorder><team>8593</team><id>4725393</id><n>377</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>28</value><value>64</value></coordinates><elapsed>12</elapsed><player2>38419</player2><subtype>header</subtype><player1>231199</player1><sortorder>2</sortorder><team>9851</team><id>3984083</id><n>46</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>2</value><value>53</value></coordinates><elapsed>49</elapsed><player2>67890</player2><subtype>shot</subtype><player1>70074</player1><sortorder>1</sortorder><team>9851</team><id>3984563</id><n>189</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>6</value></coordinates><elapsed>83</elapsed><player2>473853</player2><subtype>shot</subtype><player1>18734</player1><sortorder>2</sortorder><team>9831</team><id>3984961</id><n>323</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>23</value><value>6</value></coordinates><elapsed>23</elapsed><player2>22543</player2><subtype>tap_in</subtype><player1>30829</player1><sortorder>2</sortorder><team>10260</team><id>4034038</id><n>92</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>7</value></coordinates><elapsed>36</elapsed><player2>41468</player2><subtype>shot</subtype><player1>30829</player1><sortorder>1</sortorder><team>10260</team><id>4034275</id><n>127</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>19</value><value>7</value></coordinates><elapsed>53</elapsed><player2>30829</player2><subtype>header</subtype><player1>30843</player1><sortorder>1</sortorder><team>10260</team><id>4034581</id><n>173</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>87</elapsed><player1>46700</player1><sortorder>0</sortorder><team>10261</team><id>4035096</id><n>273</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player1>32748</player1><sortorder>0</sortorder><team>9882</team><id>436118</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>35</elapsed><player1>27657</player1><sortorder>0</sortorder><team>8524</team><id>436341</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>39</elapsed><player1>41930</player1><sortorder>0</sortorder><team>8524</team><id>436388</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>56</elapsed><player1>32748</player1><sortorder>0</sortorder><team>9882</team><id>436787</id><n>35</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>77</elapsed><player1>27657</player1><sortorder>0</sortorder><team>8524</team><id>437272</id><n>38</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>83</elapsed><player1>38762</player1><sortorder>0</sortorder><team>8524</team><id>437422</id><n>40</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>30</value><value>63</value></coordinates><elapsed>15</elapsed><player2>127130</player2><subtype>shot</subtype><player1>144996</player1><sortorder>2</sortorder><team>10003</team><id>4022819</id><n>65</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>395</event_incident_typefk><elapsed>19</elapsed><player2>30876</player2><player1>24006</player1><sortorder>0</sortorder><team>8668</team><id>1635962</id><n>211</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>63</elapsed><player2>24136</player2><subtype>distance</subtype><player1>38609</player1><sortorder>1</sortorder><team>10252</team><id>1636960</id><n>249</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>69</elapsed><player1>24846</player1><sortorder>0</sortorder><team>8668</team><id>1637068</id><n>265</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>83</elapsed><player2>139671</player2><subtype>header</subtype><player1>23264</player1><sortorder>1</sortorder><team>10252</team><id>1637311</id><n>273</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>16</elapsed><player2>21446</player2><subtype>header</subtype><player1>27660</player1><sortorder>2</sortorder><team>8543</team><id>1817898</id><n>268</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>23</elapsed><player2>39334</player2><subtype>header</subtype><player1>25598</player1><sortorder>2</sortorder><team>8543</team><id>1817925</id><n>274</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>72</elapsed><player2>57067</player2><subtype>volley</subtype><player1>25598</player1><sortorder>3</sortorder><team>8543</team><id>1818430</id><n>338</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>36</elapsed><player1>107417</player1><sortorder>0</sortorder><team>8639</team><id>2013717</id><n>22</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player1>25496</player1><sortorder>0</sortorder><team>8639</team><id>2014068</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>67</elapsed><player1>39993</player1><sortorder>0</sortorder><team>8639</team><id>2014151</id><n>28</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>32</elapsed><subtype>shot</subtype><player1>38717</player1><sortorder>1</sortorder><team>8686</team><id>1439258</id><n>240</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><elapsed>75</elapsed><subtype>header</subtype><player1>27598</player1><sortorder>1</sortorder><team>9888</team><id>1439501</id><n>297</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>90</elapsed><player1>37545</player1><sortorder>0</sortorder><team>8686</team><id>1439526</id><n>311</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>28</value><value>3</value></coordinates><elapsed>8</elapsed><player2>23257</player2><subtype>header</subtype><player1>24148</player1><sortorder>1</sortorder><team>8659</team><id>4338698</id><n>66</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>64</value></coordinates><elapsed>20</elapsed><player2>26554</player2><subtype>shot</subtype><player1>23190</player1><sortorder>2</sortorder><team>8197</team><id>4338971</id><n>105</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>9</value></coordinates><elapsed>26</elapsed><player2>115160</player2><subtype>shot</subtype><player1>25075</player1><sortorder>4</sortorder><team>8659</team><id>4339080</id><n>160</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>23</value><value>66</value></coordinates><elapsed>81</elapsed><player2>13423</player2><subtype>header</subtype><player1>38899</player1><sortorder>0</sortorder><team>8197</team><id>4340734</id><n>468</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>393</event_incident_typefk><coordinates><value>30</value><value>63</value></coordinates><elapsed>90</elapsed><player2>30930</player2><subtype>shot</subtype><player1>286119</player1><sortorder>6</sortorder><team>8197</team><id>4340950</id><n>546</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>npm</comment><elapsed_plus>2</elapsed_plus><event_incident_typefk>348</event_incident_typefk><elapsed>45</elapsed><subtype>saved_back_into_play</subtype><player1>71550</player1><sortorder>2</sortorder><team>8528</team><id>910848</id><n>154</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>60</elapsed><player2>71550</player2><subtype>shot</subtype><player1>101192</player1><sortorder>3</sortorder><team>8528</team><id>911133</id><n>365</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>73</elapsed><player2>71550</player2><subtype>shot</subtype><player1>29581</player1><sortorder>2</sortorder><team>8528</team><id>911291</id><n>375</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>76</elapsed><player1>106292</player1><sortorder>0</sortorder><team>9830</team><id>2984575</id><n>15</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>7</value></coordinates><elapsed>19</elapsed><player2>39535</player2><subtype>shot</subtype><player1>116555</player1><sortorder>1</sortorder><team>9875</team><id>4020774</id><n>62</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>30</elapsed><player1>46104</player1><sortorder>2</sortorder><team>9875</team><id>4020812</id><n>100</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><coordinates><value>24</value><value>3</value></coordinates><elapsed>10</elapsed><subtype>header</subtype><player1>239287</player1><sortorder>3</sortorder><team>9804</team><id>4532623</id><n>62</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>21</value><value>3</value></coordinates><elapsed>16</elapsed><subtype>shot</subtype><player1>33640</player1><sortorder>1</sortorder><team>9804</team><id>4532716</id><n>114</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>33</value><value>15</value></coordinates><elapsed>31</elapsed><player2>33640</player2><subtype>distance</subtype><player1>362113</player1><sortorder>2</sortorder><team>9804</team><id>4532912</id><n>164</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>6</value></coordinates><elapsed>49</elapsed><player2>41432</player2><subtype>header</subtype><player1>34008</player1><sortorder>3</sortorder><team>9804</team><id>4533260</id><n>246</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>24</value><value>5</value></coordinates><elapsed>70</elapsed><subtype>shot</subtype><player1>33640</player1><sortorder>1</sortorder><team>9804</team><id>4533626</id><n>331</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>42</elapsed><player2>193530</player2><player1>10967</player1><sortorder>0</sortorder><team>9790</team><id>3280060</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>57</elapsed><player2>178781</player2><player1>193530</player1><sortorder>0</sortorder><team>9790</team><id>3280439</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>304733</player1><sortorder>1</sortorder><team>9790</team><id>3280797</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><elapsed>15</elapsed><subtype>volley</subtype><player1>24737</player1><sortorder>2</sortorder><team>9879</team><id>399895</id><n>311</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>41</elapsed><player2>24737</player2><subtype>distance</subtype><player1>24741</player1><sortorder>1</sortorder><team>9879</team><id>400297</id><n>344</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>82</elapsed><player2>23932</player2><subtype>header</subtype><player1>23934</player1><sortorder>2</sortorder><team>8559</team><id>401158</id><n>396</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>33</elapsed><player1>27642</player1><sortorder>0</sortorder><team>10269</team><id>656579</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>48</elapsed><player1>27326</player1><sortorder>0</sortorder><team>10269</team><id>657050</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player1>33782</player1><sortorder>0</sortorder><team>9847</team><id>2368465</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>40</elapsed><player1>35724</player1><sortorder>0</sortorder><team>9847</team><id>2368985</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>72</elapsed><player1>26419</player1><sortorder>0</sortorder><team>9847</team><id>2369245</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>35724</player1><sortorder>0</sortorder><team>9847</team><id>2369304</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>4</elapsed><player2>261313</player2><player1>26221</player1><sortorder>0</sortorder><team>9830</team><id>3385515</id><n>15</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>889</event_incident_typefk><coordinates><value>19</value><value>67</value></coordinates><elapsed>62</elapsed><player2>275034</player2><subtype>backheel</subtype><player1>27734</player1><sortorder>2</sortorder><team>8600</team><id>4436199</id><n>377</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>40</elapsed><player1>194533</player1><sortorder>0</sortorder><team>8165</team><id>2927602</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>61</elapsed><player1>38364</player1><sortorder>0</sortorder><team>8177</team><id>2927646</id><n>31</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>78</elapsed><player1>40605</player1><sortorder>0</sortorder><team>8177</team><id>2927689</id><n>28</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player1>115847</player1><sortorder>0</sortorder><team>8165</team><id>2927784</id><n>32</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>5</elapsed><player1>21446</player1><sortorder>0</sortorder><team>8543</team><id>2403105</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>25</elapsed><player1>30638</player1><sortorder>0</sortorder><team>8543</team><id>2403218</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>36</elapsed><player1>30638</player1><sortorder>0</sortorder><team>8543</team><id>2403292</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>26</elapsed><player2>38044</player2><player1>41157</player1><sortorder>0</sortorder><team>10205</team><id>3480179</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>69</elapsed><player2>41157</player2><player1>38044</player1><sortorder>0</sortorder><team>10205</team><id>3480320</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player2>99047</player2><player1>75342</player1><sortorder>0</sortorder><team>8560</team><id>3480380</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>62</value></coordinates><elapsed>43</elapsed><player2>31906</player2><subtype>shot</subtype><player1>36084</player1><sortorder>3</sortorder><team>8177</team><id>5329836</id><n>254</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>19</elapsed><player1>187666</player1><sortorder>1</sortorder><team>6391</team><id>5109780</id><n>157</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>19</value><value>4</value></coordinates><elapsed>38</elapsed><player2>199834</player2><subtype>header</subtype><player1>248689</player1><sortorder>1</sortorder><team>8592</team><id>5110034</id><n>273</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>33</elapsed><player2>68411</player2><subtype>volley</subtype><player1>11685</player1><sortorder>3</sortorder><team>10167</team><id>1278019</id><n>292</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><elapsed_plus>3</elapsed_plus><event_incident_typefk>22</event_incident_typefk><elapsed>45</elapsed><subtype>missed</subtype><player1>41729</player1><sortorder>0</sortorder><team>9976</team><id>1278254</id><n>166</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><elapsed>12</elapsed><subtype>shot</subtype><player1>37799</player1><sortorder>6</sortorder><team>8721</team><id>813029</id><n>100</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>68</elapsed><player1>40659</player1><sortorder>0</sortorder><team>9831</team><id>1841493</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>40659</player1><sortorder>0</sortorder><team>9831</team><id>1841613</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>10</value></coordinates><elapsed>39</elapsed><player2>469852</player2><subtype>shot</subtype><player1>169193</player1><sortorder>1</sortorder><team>9748</team><id>3818906</id><n>363</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>23</value><value>6</value></coordinates><elapsed>45</elapsed><player2>33744</player2><subtype>header</subtype><player1>169193</player1><sortorder>2</sortorder><team>9748</team><id>3819002</id><n>374</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>6</value></coordinates><elapsed>84</elapsed><player2>409161</player2><subtype>shot</subtype><player1>169193</player1><sortorder>4</sortorder><team>9748</team><id>3819798</id><n>420</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>12</elapsed><player2>32748</player2><subtype>header</subtype><player1>27694</player1><sortorder>1</sortorder><team>8564</team><id>1662525</id><n>238</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>13</elapsed><player2>39535</player2><subtype>shot</subtype><player1>49677</player1><sortorder>14</sortorder><team>9875</team><id>1662528</id><n>214</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>36</elapsed><player2>56585</player2><subtype>shot</subtype><player1>49677</player1><sortorder>12</sortorder><team>9875</team><id>1662618</id><n>261</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>51</elapsed><subtype>shot</subtype><player1>49677</player1><sortorder>11</sortorder><team>9875</team><id>1662769</id><n>268</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>46</elapsed><player1>154280</player1><sortorder>0</sortorder><team>8592</team><id>2499338</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>17</elapsed><player1>282770</player1><sortorder>2</sortorder><team>8636</team><id>5460414</id><n>79</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>63</value></coordinates><elapsed>55</elapsed><player2>33640</player2><subtype>shot</subtype><player1>24791</player1><sortorder>1</sortorder><team>9804</team><id>5460735</id><n>226</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>73</elapsed><player1>309726</player1><sortorder>1</sortorder><team>9804</team><id>5460877</id><n>323</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>3</elapsed><player1>303926</player1><sortorder>0</sortorder><team>10228</team><id>4136836</id><n>7</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>9</elapsed><player2>212819</player2><player1>318809</player1><sortorder>0</sortorder><team>10228</team><id>4136936</id><n>35</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><elapsed>43</elapsed><player1>212819</player1><sortorder>0</sortorder><team>10228</team><id>4137531</id><n>14</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>85</elapsed><player1>408780</player1><sortorder>0</sortorder><team>10228</team><id>4138452</id><n>30</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>4</elapsed><player1>37273</player1><sortorder>0</sortorder><team>8530</team><id>2562996</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>86</elapsed><player1>18733</player1><sortorder>0</sortorder><team>8530</team><id>2563460</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>10</elapsed><player1>38920</player1><sortorder>0</sortorder><team>8533</team><id>2763812</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>19</elapsed><player1>41269</player1><sortorder>0</sortorder><team>9804</team><id>2763830</id><n>18</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>63</value></coordinates><elapsed>90</elapsed><player2>39215</player2><subtype>shot</subtype><player1>213486</player1><sortorder>3</sortorder><team>9910</team><id>3777720</id><n>340</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>65</elapsed><player2>150596</player2><subtype>header</subtype><player1>23806</player1><sortorder>2</sortorder><team>8344</team><id>3176013</id><n>344</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>25</elapsed><player1>39644</player1><sortorder>0</sortorder><team>9878</team><id>2643271</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>34</elapsed><player1>35421</player1><sortorder>0</sortorder><team>8524</team><id>2643282</id><n>22</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>67</elapsed><player1>35421</player1><sortorder>0</sortorder><team>8524</team><id>2643331</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>72</elapsed><player1>33871</player1><sortorder>0</sortorder><team>9906</team><id>2545124</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>87</elapsed><player1>215405</player1><sortorder>0</sortorder><team>8661</team><id>2545129</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>36</elapsed><player1>29145</player1><sortorder>0</sortorder><team>9904</team><id>2724957</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>41</elapsed><player1>140965</player1><sortorder>0</sortorder><team>8357</team><id>2724961</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>71</elapsed><player1>212915</player1><sortorder>0</sortorder><team>9904</team><id>2724999</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>83</elapsed><player1>140965</player1><sortorder>0</sortorder><team>8357</team><id>2725014</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>87</elapsed><player1>39834</player1><sortorder>0</sortorder><team>9904</team><id>2725015</id><n>29</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>41</elapsed><subtype>distance</subtype><player1>37754</player1><sortorder>1</sortorder><team>8394</team><id>1017383</id><n>291</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>63</elapsed><subtype>shot</subtype><player1>33762</player1><sortorder>0</sortorder><team>8394</team><id>1017441</id><n>317</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>71</elapsed><player2>33635</player2><subtype>shot</subtype><player1>33582</player1><sortorder>2</sortorder><team>8394</team><id>1017456</id><n>325</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>60</elapsed><player2>24001</player2><subtype>shot</subtype><player1>25668</player1><sortorder>1</sortorder><team>10194</team><id>552931</id><n>323</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>88</elapsed><player2>49825</player2><subtype>header</subtype><player1>30456</player1><sortorder>2</sortorder><team>8455</team><id>553325</id><n>365</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>4</elapsed_plus><event_incident_typefk>39</event_incident_typefk><elapsed>90</elapsed><subtype>distance</subtype><player1>30631</player1><sortorder>4</sortorder><team>8455</team><id>553385</id><n>381</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>7</value></coordinates><elapsed>45</elapsed><player2>109638</player2><subtype>shot</subtype><player1>187266</player1><sortorder>8</sortorder><team>10172</team><id>3676754</id><n>227</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>7</elapsed><player1>41488</player1><sortorder>0</sortorder><team>9804</team><id>490061</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>8</elapsed><player1>39706</player1><sortorder>0</sortorder><team>8530</team><id>490086</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>39</elapsed><player1>39706</player1><sortorder>0</sortorder><team>8530</team><id>490457</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>50</elapsed><player1>27686</player1><sortorder>0</sortorder><team>9804</team><id>490692</id><n>24</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>80</elapsed><player1>39706</player1><sortorder>0</sortorder><team>8530</team><id>491026</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>58</elapsed><player1>493418</player1><sortorder>0</sortorder><team>9824</team><id>5639993</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>67</elapsed><player1>197757</player1><sortorder>0</sortorder><team>10243</team><id>5640008</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>69</elapsed><player1>198082</player1><sortorder>0</sortorder><team>10243</team><id>5640010</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>76</elapsed><player1>121080</player1><sortorder>0</sortorder><team>10243</team><id>5640020</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>20</elapsed><player1>24846</player1><sortorder>1</sortorder><team>8668</team><id>3336175</id><n>161</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>33</elapsed><player2>89185</player2><subtype>shot</subtype><player1>143365</player1><sortorder>2</sortorder><team>10003</team><id>3336360</id><n>169</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>54</elapsed><player2>26151</player2><subtype>shot</subtype><player1>181276</player1><sortorder>0</sortorder><team>8668</team><id>3336792</id><n>192</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>58</elapsed><player2>26151</player2><subtype>header</subtype><player1>215384</player1><sortorder>2</sortorder><team>8668</team><id>3336870</id><n>198</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>406</event_incident_typefk><elapsed>90</elapsed><player2>2802</player2><subtype>header</subtype><player1>24948</player1><sortorder>6</sortorder><team>10003</team><id>3337542</id><n>228</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>20</elapsed><player2>37459</player2><subtype>shot</subtype><player1>41468</player1><sortorder>1</sortorder><team>10267</team><id>634460</id><n>244</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>25</elapsed><player1>30909</player1><sortorder>2</sortorder><team>10267</team><id>634497</id><n>250</n><type>goal</type><goal_type>p</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>49</elapsed><player1>37471</player1><sortorder>1</sortorder><team>8305</team><id>634666</id><n>224</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>56</elapsed><subtype>distance</subtype><player1>34029</player1><sortorder>0</sortorder><team>10267</team><id>634690</id><n>276</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>60</elapsed><player1>30909</player1><sortorder>0</sortorder><team>10267</team><id>634703</id><n>236</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>23</value><value>4</value></coordinates><elapsed>17</elapsed><player2>316688</player2><subtype>header</subtype><player1>32705</player1><sortorder>2</sortorder><team>8668</team><id>4756865</id><n>63</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>15</value></coordinates><elapsed>22</elapsed><player2>215384</player2><subtype>shot</subtype><player1>32705</player1><sortorder>1</sortorder><team>8668</team><id>4756886</id><n>96</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>17</value><value>52</value></coordinates><elapsed>36</elapsed><player2>32345</player2><subtype>distance</subtype><player1>115067</player1><sortorder>1</sortorder><team>8455</team><id>4756949</id><n>153</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>31</value><value>3</value></coordinates><elapsed>83</elapsed><player2>215384</player2><subtype>shot</subtype><player1>32705</player1><sortorder>1</sortorder><team>8668</team><id>4757153</id><n>388</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>28</value><value>4</value></coordinates><elapsed>60</elapsed><player2>278343</player2><subtype>shot</subtype><player1>286119</player1><sortorder>1</sortorder><team>8197</team><id>4945179</id><n>504</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>32</value><value>6</value></coordinates><elapsed>3</elapsed><player2>31921</player2><subtype>shot</subtype><player1>208077</player1><sortorder>5</sortorder><team>8633</team><id>5125369</id><n>64</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>20</value><value>63</value></coordinates><elapsed>10</elapsed><player2>75004</player2><subtype>header</subtype><player1>150731</player1><sortorder>3</sortorder><team>8370</team><id>5125545</id><n>107</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>20</value><value>64</value></coordinates><elapsed>12</elapsed><player2>183449</player2><subtype>header</subtype><player1>427893</player1><sortorder>1</sortorder><team>8370</team><id>5125591</id><n>122</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>6</value></coordinates><elapsed>25</elapsed><player2>208077</player2><subtype>header</subtype><player1>31921</player1><sortorder>1</sortorder><team>8633</team><id>5125848</id><n>244</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>30</elapsed><player1>30893</player1><sortorder>0</sortorder><team>8633</team><id>5125914</id><n>262</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>10</value></coordinates><elapsed>42</elapsed><player2>164684</player2><subtype>shot</subtype><player1>31921</player1><sortorder>2</sortorder><team>8633</team><id>5126071</id><n>343</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>13</value><value>7</value></coordinates><elapsed>48</elapsed><player2>164684</player2><subtype>shot</subtype><player1>26166</player1><sortorder>2</sortorder><team>8633</team><id>5126343</id><n>397</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>26</value><value>7</value></coordinates><elapsed>54</elapsed><player2>164684</player2><subtype>header</subtype><player1>30893</player1><sortorder>1</sortorder><team>8633</team><id>5126407</id><n>438</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>24</value><value>6</value></coordinates><elapsed>61</elapsed><player2>30893</player2><subtype>tap_in</subtype><player1>31921</player1><sortorder>4</sortorder><team>8633</team><id>5126491</id><n>478</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>29</value><value>2</value></coordinates><elapsed>70</elapsed><subtype>shot</subtype><player1>31921</player1><sortorder>1</sortorder><team>8633</team><id>5126595</id><n>536</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>9</value></coordinates><elapsed>80</elapsed><player2>31097</player2><subtype>shot</subtype><player1>26166</player1><sortorder>1</sortorder><team>8633</team><id>5126690</id><n>588</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>9</value></coordinates><elapsed>90</elapsed><player2>239219</player2><subtype>shot</subtype><player1>26166</player1><sortorder>2</sortorder><team>8633</team><id>5126788</id><n>656</n><type>goal</type><goal_type>n</goal_type></value></goal>      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>20</value><value>6</value></coordinates><elapsed>41</elapsed><player2>30924</player2><subtype>header</subtype><player1>30834</player1><sortorder>2</sortorder><team>9823</team><id>4018189</id><n>183</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><coordinates><value>25</value><value>2</value></coordinates><elapsed>48</elapsed><subtype>loose_ball</subtype><player1>116772</player1><sortorder>4</sortorder><team>9823</team><id>4018317</id><n>202</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>21</value><value>9</value></coordinates><elapsed>23</elapsed><subtype>shot</subtype><player1>559065</player1><sortorder>2</sortorder><team>10249</team><id>5210447</id><n>211</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>11</value><value>61</value></coordinates><elapsed>40</elapsed><subtype>shot</subtype><player1>145061</player1><sortorder>3</sortorder><team>7819</team><id>5210700</id><n>326</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>63</value></coordinates><elapsed>52</elapsed><player2>128666</player2><subtype>shot</subtype><player1>183530</player1><sortorder>3</sortorder><team>7819</team><id>5211093</id><n>448</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>16</elapsed><subtype>shot</subtype><player1>30682</player1><sortorder>9</sortorder><team>8686</team><id>1015848</id><n>221</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>66</elapsed><player2>30878</player2><subtype>shot</subtype><player1>30549</player1><sortorder>1</sortorder><team>8636</team><id>1016472</id><n>280</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>73</elapsed><subtype>shot</subtype><player1>30709</player1><sortorder>7</sortorder><team>8686</team><id>1016502</id><n>282</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><coordinates><value>22</value><value>5</value></coordinates><elapsed>13</elapsed><subtype>header</subtype><player1>38458</player1><sortorder>2</sortorder><team>8535</team><id>4494405</id><n>52</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>19</value><value>2</value></coordinates><elapsed>30</elapsed><player2>47373</player2><subtype>header</subtype><player1>30881</player1><sortorder>2</sortorder><team>8535</team><id>4494546</id><n>130</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>9</value></coordinates><elapsed>56</elapsed><player2>24536</player2><subtype>shot</subtype><player1>292462</player1><sortorder>1</sortorder><team>8535</team><id>4494765</id><n>238</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>17</elapsed><player1>40758</player1><sortorder>0</sortorder><team>9873</team><id>2751450</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>82</elapsed><player1>26564</player1><sortorder>0</sortorder><team>9847</team><id>2751501</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>26</elapsed><player1>39719</player1><sortorder>0</sortorder><team>8535</team><id>868502</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player1>30881</player1><sortorder>0</sortorder><team>8535</team><id>869145</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>npm</comment><elapsed_plus>5</elapsed_plus><event_incident_typefk>348</event_incident_typefk><elapsed>90</elapsed><subtype>saved_back_into_play</subtype><player1>30981</player1><sortorder>0</sortorder><team>8634</team><id>1730107</id><n>200</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><elapsed>41</elapsed><player2>31291</player2><subtype>tap_in</subtype><player1>38817</player1><sortorder>2</sortorder><team>8456</team><id>2669588</id><n>268</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>45</elapsed><player2>26181</player2><subtype>shot</subtype><player1>37459</player1><sortorder>22</sortorder><team>8456</team><id>2669698</id><n>276</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>649</event_incident_typefk><elapsed>56</elapsed><subtype>tap_in</subtype><player1>39027</player1><sortorder>62</sortorder><team>8456</team><id>2669938</id><n>292</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>69</elapsed><subtype>shot</subtype><player1>36615</player1><sortorder>1201</sortorder><team>8456</team><id>2670180</id><n>305</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>26</value><value>1</value></coordinates><elapsed>37</elapsed><player1>391058</player1><sortorder>1</sortorder><team>10267</team><id>3852715</id><n>364</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>11</value><value>4</value></coordinates><elapsed>43</elapsed><player2>361792</player2><subtype>shot</subtype><player1>194660</player1><sortorder>3</sortorder><team>9783</team><id>3852803</id><n>363</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>9</value></coordinates><elapsed>79</elapsed><player2>359190</player2><subtype>shot</subtype><player1>41268</player1><sortorder>7</sortorder><team>9783</team><id>3853391</id><n>404</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>23</elapsed><player1>39045</player1><sortorder>0</sortorder><team>9904</team><id>422019</id><n>14</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>19</elapsed><player2>209384</player2><player1>240346</player1><sortorder>0</sortorder><team>10235</team><id>4264667</id><n>8</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player2>422121</player2><player1>165525</player1><sortorder>0</sortorder><team>6631</team><id>4265399</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player2>185554</player2><player1>287333</player1><sortorder>0</sortorder><team>10235</team><id>4265897</id><n>40</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>23</elapsed><player1>36396</player1><sortorder>0</sortorder><team>9851</team><id>1506649</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>51</elapsed><player1>26392</player1><sortorder>0</sortorder><team>8689</team><id>1507112</id><n>31</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>63</elapsed><player1>159594</player1><sortorder>0</sortorder><team>8689</team><id>1507193</id><n>29</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>13</value></coordinates><elapsed>62</elapsed><player2>30937</player2><subtype>shot</subtype><player1>425963</player1><sortorder>0</sortorder><team>10189</team><id>4184744</id><n>323</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>406</event_incident_typefk><coordinates><value>23</value><value>65</value></coordinates><elapsed>90</elapsed><player2>42860</player2><subtype>header</subtype><player1>41927</player1><sortorder>5</sortorder><team>8697</team><id>4185635</id><n>493</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>77</elapsed><player2>360559</player2><player1>489288</player1><sortorder>0</sortorder><team>8611</team><id>4259525</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>82</elapsed><player1>360559</player1><sortorder>0</sortorder><team>8611</team><id>4259620</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>13</elapsed><player2>161415</player2><subtype>shot</subtype><player1>23264</player1><sortorder>32</sortorder><team>10252</team><id>1654269</id><n>349</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>57</elapsed><player2>38373</player2><subtype>shot</subtype><player1>35454</player1><sortorder>68</sortorder><team>10261</team><id>1655107</id><n>390</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>49</elapsed><player2>46353</player2><subtype>distance</subtype><player1>40755</player1><sortorder>2</sortorder><team>8586</team><id>1565412</id><n>233</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>79</elapsed><subtype>distance</subtype><player1>25075</player1><sortorder>3</sortorder><team>8658</team><id>1566087</id><n>262</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>46353</player2><subtype>shot</subtype><player1>40755</player1><sortorder>3</sortorder><team>8586</team><id>1566459</id><n>275</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>60</value></coordinates><elapsed>87</elapsed><player2>182923</player2><subtype>shot</subtype><player1>409161</player1><sortorder>1</sortorder><team>9748</team><id>4508636</id><n>317</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>57</elapsed><player1>202610</player1><sortorder>0</sortorder><team>10268</team><id>3149014</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>74</elapsed><player1>282691</player1><sortorder>0</sortorder><team>10267</team><id>3149064</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>84</elapsed><player1>500791</player1><sortorder>0</sortorder><team>10268</team><id>3149120</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>85</elapsed><player2>41468</player2><subtype>shot</subtype><player1>38834</player1><sortorder>0</sortorder><team>8455</team><id>2368994</id><n>337</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>13</elapsed><player1>210398</player1><sortorder>0</sortorder><team>9851</team><id>2485018</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>21</elapsed><player1>37429</player1><sortorder>0</sortorder><team>9847</team><id>2485116</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player1>46757</player1><sortorder>0</sortorder><team>9851</team><id>2485350</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>46</elapsed><player1>92666</player1><sortorder>0</sortorder><team>8535</team><id>1667788</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>61</elapsed><player1>41269</player1><sortorder>0</sortorder><team>8535</team><id>1667972</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>81</elapsed><player1>92666</player1><sortorder>0</sortorder><team>8535</team><id>1668235</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>20</value><value>63</value></coordinates><elapsed>15</elapsed><player2>162679</player2><subtype>header</subtype><player1>193901</player1><sortorder>2</sortorder><team>9905</team><id>4862632</id><n>176</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>16</value><value>59</value></coordinates><elapsed>24</elapsed><player2>459499</player2><subtype>distance</subtype><player1>278863</player1><sortorder>6</sortorder><team>9905</team><id>4862725</id><n>187</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>16</value><value>10</value></coordinates><elapsed>27</elapsed><player2>335436</player2><subtype>shot</subtype><player1>36554</player1><sortorder>3</sortorder><team>8262</team><id>4862759</id><n>160</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>23</value><value>4</value></coordinates><elapsed>57</elapsed><player2>115670</player2><subtype>tap_in</subtype><player1>29340</player1><sortorder>2</sortorder><team>8262</team><id>4863116</id><n>289</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>21</value><value>64</value></coordinates><elapsed>64</elapsed><subtype>shot</subtype><player1>130118</player1><sortorder>3</sortorder><team>9905</team><id>4863175</id><n>323</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><elapsed_plus>6</elapsed_plus><event_incident_typefk>22</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>90</elapsed><subtype>missed</subtype><player1>36889</player1><sortorder>14</sortorder><team>8262</team><id>4863399</id><n>474</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>10</elapsed><player1>37411</player1><sortorder>0</sortorder><team>8661</team><id>660780</id><n>46</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>15</elapsed><player1>38398</player1><sortorder>0</sortorder><team>8661</team><id>660836</id><n>32</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>48</elapsed><player1>75398</player1><sortorder>0</sortorder><team>8479</team><id>661276</id><n>45</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>76</elapsed><player1>56686</player1><sortorder>0</sortorder><team>8661</team><id>661451</id><n>35</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>81</elapsed><player1>75474</player1><sortorder>0</sortorder><team>8479</team><id>661492</id><n>36</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>41718</player1><sortorder>0</sortorder><team>8661</team><id>661571</id><n>38</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>31</value><value>61</value></coordinates><elapsed>4</elapsed><player2>94549</player2><subtype>shot</subtype><player1>304856</player1><sortorder>2</sortorder><team>9851</team><id>3901428</id><n>15</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>27</value><value>5</value></coordinates><elapsed>21</elapsed><player1>30457</player1><sortorder>2</sortorder><team>9851</team><id>3901591</id><n>311</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>42</elapsed><player1>38398</player1><sortorder>0</sortorder><team>9788</team><id>921738</id><n>6</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>9</elapsed><player2>111930</player2><subtype>volley</subtype><player1>38759</player1><sortorder>1</sortorder><team>8667</team><id>3169867</id><n>194</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>60</elapsed><player2>127130</player2><subtype>shot</subtype><player1>74663</player1><sortorder>1</sortorder><team>10003</team><id>3169960</id><n>235</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>64</elapsed><player1>24448</player1><sortorder>0</sortorder><team>8533</team><id>1006609</id><n>15</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>74</elapsed><player1>33640</player1><sortorder>0</sortorder><team>8530</team><id>1006705</id><n>16</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>51</elapsed><player1>42491</player1><sortorder>0</sortorder><team>9876</team><id>3102834</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>78</elapsed><player1>30709</player1><sortorder>0</sortorder><team>9876</team><id>3102982</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>48</elapsed><player1>26344</player1><sortorder>0</sortorder><team>9748</team><id>2750174</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>80</elapsed><player1>33744</player1><sortorder>0</sortorder><team>9748</team><id>2750479</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player1>26344</player1><sortorder>0</sortorder><team>9748</team><id>2750514</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>dg</comment><event_incident_typefk>301</event_incident_typefk><coordinates><value>19</value><value>61</value></coordinates><elapsed>23</elapsed><subtype>volley</subtype><player1>31921</player1><sortorder>1</sortorder><team>8633</team><id>4333123</id><n>158</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>64</value></coordinates><elapsed>68</elapsed><player2>282674</player2><subtype>header</subtype><player1>30893</player1><sortorder>1</sortorder><team>8633</team><id>4333419</id><n>473</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>60</value></coordinates><elapsed>74</elapsed><player2>30893</player2><subtype>shot</subtype><player1>164684</player1><sortorder>3</sortorder><team>8633</team><id>4333457</id><n>514</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>51</elapsed><player1>75310</player1><sortorder>0</sortorder><team>8302</team><id>2029737</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>37474</player1><sortorder>0</sortorder><team>8302</team><id>2029738</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>68</elapsed><player1>33991</player1><sortorder>0</sortorder><team>8302</team><id>2029739</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>74</elapsed><player1>45204</player1><sortorder>0</sortorder><team>8661</team><id>2029765</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>22</elapsed><player2>159596</player2><subtype>shot</subtype><player1>282274</player1><sortorder>1</sortorder><team>9879</team><id>2779619</id><n>178</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>77</elapsed><player2>38229</player2><subtype>shot</subtype><player1>27430</player1><sortorder>1</sortorder><team>9879</team><id>2781144</id><n>240</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>80</event_incident_typefk><elapsed>90</elapsed><subtype>shot</subtype><player1>30603</player1><sortorder>1</sortorder><team>9879</team><id>2781538</id><n>251</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>12</value></coordinates><elapsed>18</elapsed><player2>35724</player2><subtype>shot</subtype><player1>129391</player1><sortorder>1</sortorder><team>9847</team><id>4814954</id><n>104</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>649</event_incident_typefk><coordinates><value>26</value><value>3</value></coordinates><elapsed>77</elapsed><subtype>tap_in</subtype><player1>46509</player1><sortorder>1</sortorder><team>9847</team><id>4815779</id><n>344</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>8</value></coordinates><elapsed>83</elapsed><player2>46509</player2><subtype>shot</subtype><player1>35724</player1><sortorder>1</sortorder><team>9847</team><id>4815812</id><n>363</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>87</elapsed><subtype>saved_back_into_play</subtype><player1>35724</player1><sortorder>0</sortorder><team>9847</team><id>4815828</id><n>383</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>npm</comment><event_incident_typefk>159</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>68</elapsed><subtype>saved</subtype><player1>109121</player1><sortorder>1</sortorder><team>8533</team><id>5109139</id><n>449</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>16</value><value>6</value></coordinates><elapsed>76</elapsed><player2>42437</player2><subtype>shot</subtype><player1>36121</player1><sortorder>5</sortorder><team>8533</team><id>5109214</id><n>518</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>4</elapsed><player1>413557</player1><sortorder>0</sortorder><team>9829</team><id>3176618</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>42</elapsed><player1>215798</player1><sortorder>0</sortorder><team>9829</team><id>3176665</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>13</elapsed><player1>45174</player1><sortorder>0</sortorder><team>10192</team><id>5535709</id><n>9</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>47</elapsed><player1>37554</player1><sortorder>0</sortorder><team>10192</team><id>5536136</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>60</elapsed><player1>71764</player1><sortorder>0</sortorder><team>10192</team><id>5536207</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>5</elapsed><player1>74739</player1><sortorder>0</sortorder><team>9869</team><id>555263</id><n>21</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>54</elapsed><player1>102572</player1><sortorder>0</sortorder><team>8479</team><id>555570</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>22</elapsed><player2>37581</player2><subtype>shot</subtype><player1>25759</player1><sortorder>3</sortorder><team>8633</team><id>845762</id><n>214</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><elapsed>56</elapsed><subtype>shot</subtype><player1>26166</player1><sortorder>0</sortorder><team>8633</team><id>845926</id><n>108</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><elapsed>77</elapsed><subtype>shot</subtype><player1>150649</player1><sortorder>0</sortorder><team>8696</team><id>846001</id><n>76</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>36</elapsed><player1>26294</player1><sortorder>0</sortorder><team>9748</team><id>1775617</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>38</elapsed><player1>38216</player1><sortorder>0</sortorder><team>9851</team><id>1775628</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>53</elapsed><player1>41192</player1><sortorder>0</sortorder><team>9851</team><id>1775737</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>17</elapsed><player1>35724</player1><sortorder>3</sortorder><team>8564</team><id>1999090</id><n>177</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player1>30603</player1><sortorder>2</sortorder><team>8564</team><id>1999454</id><n>229</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>18</value><value>61</value></coordinates><elapsed>9</elapsed><subtype>shot</subtype><player1>25759</player1><sortorder>3</sortorder><team>9875</team><id>5214314</id><n>112</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>18</elapsed><player1>193441</player1><sortorder>0</sortorder><team>9875</team><id>5214534</id><n>168</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>8</value></coordinates><elapsed>45</elapsed><player2>195717</player2><subtype>shot</subtype><player1>319631</player1><sortorder>5</sortorder><team>9882</team><id>5215221</id><n>354</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>64</value></coordinates><elapsed>60</elapsed><player2>193441</player2><subtype>shot</subtype><player1>41658</player1><sortorder>1</sortorder><team>9875</team><id>5215887</id><n>467</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>31</value><value>5</value></coordinates><elapsed>73</elapsed><player2>50189</player2><subtype>header</subtype><player1>39295</player1><sortorder>2</sortorder><team>9882</team><id>5216185</id><n>513</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>32</value><value>60</value></coordinates><elapsed>79</elapsed><player2>150330</player2><subtype>shot</subtype><player1>46104</player1><sortorder>3</sortorder><team>9875</team><id>5216328</id><n>548</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>45</value><value>1</value></coordinates><elapsed>11</elapsed><subtype>distance</subtype><player1>210120</player1><sortorder>1</sortorder><team>9748</team><id>5559285</id><n>54</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>4</value></coordinates><elapsed>40</elapsed><player2>38994</player2><subtype>shot</subtype><player1>426880</player1><sortorder>1</sortorder><team>9748</team><id>5559424</id><n>143</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>882</event_incident_typefk><coordinates><value>12</value><value>62</value></coordinates><elapsed>49</elapsed><player2>187666</player2><subtype>lob</subtype><player1>41240</player1><sortorder>3</sortorder><team>6391</team><id>5559560</id><n>182</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>npm</comment><event_incident_typefk>159</event_incident_typefk><elapsed>16</elapsed><subtype>saved</subtype><player1>26437</player1><sortorder>1</sortorder><team>10189</team><id>510814</id><n>26</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>79</elapsed><subtype>shot</subtype><player1>43211</player1><sortorder>1</sortorder><team>10269</team><id>511852</id><n>249</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>84</elapsed><player2>34112</player2><subtype>shot</subtype><player1>27326</player1><sortorder>1</sortorder><team>10269</team><id>511901</id><n>254</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>80</event_incident_typefk><elapsed>90</elapsed><subtype>shot</subtype><player1>27326</player1><sortorder>5</sortorder><team>10269</team><id>643702</id><n>378</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>38</elapsed><player1>34582</player1><sortorder>0</sortorder><team>9869</team><id>964547</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>63</elapsed><player1>97334</player1><sortorder>0</sortorder><team>9869</team><id>964919</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>33762</player1><sortorder>0</sortorder><team>8394</team><id>965192</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>41294</player1><sortorder>0</sortorder><team>9869</team><id>965195</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>390</event_incident_typefk><elapsed>30</elapsed><player2>30731</player2><subtype>bicycle_kick</subtype><player1>39232</player1><sortorder>1</sortorder><team>9885</team><id>2054186</id><n>225</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>45</elapsed><player2>57067</player2><subtype>header</subtype><player1>25594</player1><sortorder>3</sortorder><team>8543</team><id>2054440</id><n>251</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>82</elapsed><subtype>direct_freekick</subtype><player1>30727</player1><sortorder>0</sortorder><team>9885</team><id>2055236</id><n>297</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>1</elapsed><subtype>distance</subtype><player1>46518</player1><sortorder>1</sortorder><team>10194</team><id>3108034</id><n>166</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>42</elapsed><player2>279490</player2><subtype>header</subtype><player1>109491</player1><sortorder>1</sortorder><team>8466</team><id>3108683</id><n>214</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>62</value></coordinates><elapsed>25</elapsed><player2>33065</player2><subtype>shot</subtype><player1>132844</player1><sortorder>4</sortorder><team>8358</team><id>4450254</id><n>128</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><coordinates><value>21</value><value>3</value></coordinates><elapsed>90</elapsed><subtype>header</subtype><player1>16300</player1><sortorder>4</sortorder><team>9790</team><id>4450726</id><n>423</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>17</elapsed><player1>93447</player1><sortorder>0</sortorder><team>9789</team><id>2591736</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>18</elapsed><player1>79982</player1><sortorder>0</sortorder><team>9790</team><id>2591737</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>26</elapsed><player1>212867</player1><sortorder>0</sortorder><team>9790</team><id>2591800</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>79982</player1><sortorder>0</sortorder><team>9790</team><id>2592424</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player1>212867</player1><sortorder>0</sortorder><team>9790</team><id>2592722</id><n>30</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>32</elapsed><player1>35724</player1><sortorder>0</sortorder><team>9847</team><id>3283082</id><n>26</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player2>26326</player2><player1>210184</player1><sortorder>0</sortorder><team>9941</team><id>3283200</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player2>26419</player2><player1>18925</player1><sortorder>0</sortorder><team>9847</team><id>3283401</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>68</elapsed><player2>26160</player2><player1>35724</player1><sortorder>0</sortorder><team>9847</team><id>3283519</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>72</elapsed><player1>210184</player1><sortorder>0</sortorder><team>9941</team><id>3283547</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>89</elapsed><player1>35724</player1><sortorder>0</sortorder><team>9847</team><id>3283686</id><n>16</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player1>35724</player1><sortorder>1</sortorder><team>9847</team><id>3283691</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>21</elapsed><subtype>shot</subtype><player1>46384</player1><sortorder>2</sortorder><team>9865</team><id>405529</id><n>238</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>36</elapsed><player2>34029</player2><subtype>shot</subtype><player1>37479</player1><sortorder>1</sortorder><team>10267</team><id>405611</id><n>255</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>40</elapsed><player2>74403</player2><subtype>header</subtype><player1>75310</player1><sortorder>3</sortorder><team>9865</team><id>405630</id><n>263</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>69</elapsed><player2>37824</player2><subtype>shot</subtype><player1>30909</player1><sortorder>3</sortorder><team>10267</team><id>405912</id><n>304</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>11</elapsed><player1>37558</player1><sortorder>0</sortorder><team>8398</team><id>629128</id><n>20</n><type>goal</type><goal_type>p</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>15</elapsed><player1>37760</player1><sortorder>0</sortorder><team>9810</team><id>629147</id><n>22</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>51</elapsed><player1>41923</player1><sortorder>0</sortorder><team>9810</team><id>629800</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>50</elapsed><player1>37449</player1><sortorder>0</sortorder><team>9783</team><id>903865</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>3</elapsed><player1>93471</player1><sortorder>0</sortorder><team>8521</team><id>2024325</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>77</elapsed><player1>91560</player1><sortorder>0</sortorder><team>9874</team><id>2024859</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>82</elapsed><player1>109280</player1><sortorder>0</sortorder><team>9874</team><id>2024875</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>3</elapsed><player1>141161</player1><sortorder>0</sortorder><team>8165</team><id>1181295</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>85</elapsed><player1>27642</player1><sortorder>0</sortorder><team>10269</team><id>1182463</id><n>34</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>27436</player1><sortorder>0</sortorder><team>8165</team><id>1182546</id><n>33</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>16</value><value>6</value></coordinates><elapsed>90</elapsed><player2>37357</player2><subtype>shot</subtype><player1>58346</player1><sortorder>2</sortorder><team>9788</team><id>4404645</id><n>386</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>58</elapsed><player1>42651</player1><sortorder>0</sortorder><team>8533</team><id>1533882</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>77</elapsed><player1>26112</player1><sortorder>0</sortorder><team>8592</team><id>2286901</id><n>15</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>1</elapsed><player1>37506</player1><sortorder>0</sortorder><team>10267</team><id>2522165</id><n>36</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>7</elapsed><player1>39122</player1><sortorder>0</sortorder><team>10267</team><id>2522180</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>12</elapsed><player1>213489</player1><sortorder>0</sortorder><team>8305</team><id>2522186</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>29</elapsed><player1>30914</player1><sortorder>0</sortorder><team>10267</team><id>2522217</id><n>32</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>58</elapsed><player1>37479</player1><sortorder>0</sortorder><team>8305</team><id>2522282</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player1>31718</player1><sortorder>0</sortorder><team>10267</team><id>2522296</id><n>28</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>27</value><value>15</value></coordinates><elapsed>80</elapsed><player2>72735</player2><subtype>distance</subtype><player1>176300</player1><sortorder>2</sortorder><team>10194</team><id>5354294</id><n>651</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>6</elapsed><player2>34305</player2><subtype>volley</subtype><player1>30930</player1><sortorder>0</sortorder><team>8636</team><id>1710542</id><n>214</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>47</elapsed><player2>37273</player2><subtype>shot</subtype><player1>24459</player1><sortorder>1</sortorder><team>8530</team><id>1711211</id><n>230</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>51</elapsed><player1>41694</player1><sortorder>0</sortorder><team>8530</team><id>1711265</id><n>233</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>406</event_incident_typefk><elapsed>45</elapsed><player2>30802</player2><subtype>header</subtype><player1>32569</player1><sortorder>0</sortorder><team>10260</team><id>1284753</id><n>301</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>77</elapsed><player2>38994</player2><subtype>header</subtype><player1>70409</player1><sortorder>2</sortorder><team>10260</team><id>1285286</id><n>336</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>13</elapsed><player1>31199</player1><sortorder>0</sortorder><team>8178</team><id>2404330</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>19</elapsed><player1>36084</player1><sortorder>0</sortorder><team>10269</team><id>2404381</id><n>24</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player1>36084</player1><sortorder>0</sortorder><team>10269</team><id>2404736</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>59</elapsed><player1>31199</player1><sortorder>0</sortorder><team>8178</team><id>2404804</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>8</elapsed><player2>41888</player2><subtype>header</subtype><player1>30712</player1><sortorder>2</sortorder><team>9885</team><id>764712</id><n>238</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>30</elapsed><player2>41888</player2><subtype>shot</subtype><player1>41890</player1><sortorder>0</sortorder><team>9885</team><id>764838</id><n>263</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>9</elapsed><player1>42579</player1><sortorder>0</sortorder><team>8524</team><id>403351</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>45</elapsed><player2>24160</player2><subtype>shot</subtype><player1>10491</player1><sortorder>6</sortorder><team>8668</team><id>820821</id><n>332</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>47</elapsed><player2>23264</player2><subtype>shot</subtype><player1>26165</player1><sortorder>0</sortorder><team>10252</team><id>820917</id><n>335</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>12</elapsed><player1>169193</player1><sortorder>0</sortorder><team>9748</team><id>3110608</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>13</elapsed><player1>26344</player1><sortorder>0</sortorder><team>9748</team><id>3110617</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>3</elapsed><player1>38148</player1><sortorder>0</sortorder><team>9857</team><id>3092948</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>20</elapsed><player1>30613</player1><sortorder>0</sortorder><team>8634</team><id>2682945</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>22</elapsed><player1>50047</player1><sortorder>0</sortorder><team>8634</team><id>2682948</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>37</elapsed><player1>30613</player1><sortorder>0</sortorder><team>8634</team><id>2682961</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>39</elapsed><player1>50047</player1><sortorder>0</sortorder><team>8634</team><id>2682962</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>46</elapsed><player1>30613</player1><sortorder>0</sortorder><team>8634</team><id>2682979</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>50</elapsed><player2>23783</player2><subtype>shot</subtype><player1>24372</player1><sortorder>2</sortorder><team>8559</team><id>478703</id><n>285</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>10</elapsed><player1>27657</player1><sortorder>0</sortorder><team>8543</team><id>2764590</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>90</elapsed><player1>11685</player1><sortorder>0</sortorder><team>8543</team><id>2765636</id><n>21</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>68</elapsed><player1>27349</player1><sortorder>0</sortorder><team>8165</team><id>2304220</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><coordinates><value>26</value><value>3</value></coordinates><elapsed>75</elapsed><subtype>loose_ball</subtype><player1>25483</player1><sortorder>4</sortorder><team>9904</team><id>4336763</id><n>313</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><coordinates><value>30</value><value>58</value></coordinates><elapsed>83</elapsed><subtype>volley</subtype><player1>91984</player1><sortorder>3</sortorder><team>8177</team><id>4336807</id><n>371</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>26</value><value>5</value></coordinates><elapsed>80</elapsed><player2>69541</player2><subtype>volley</subtype><player1>39139</player1><sortorder>1</sortorder><team>9851</team><id>4349295</id><n>432</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>47</elapsed><player1>27672</player1><sortorder>0</sortorder><team>8529</team><id>2443017</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>26</elapsed><player2>47382</player2><subtype>volley</subtype><player1>23933</player1><sortorder>2</sortorder><team>8654</team><id>3236917</id><n>242</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>406</event_incident_typefk><elapsed>45</elapsed><player2>47382</player2><subtype>header</subtype><player1>23933</player1><sortorder>4</sortorder><team>8654</team><id>3237025</id><n>266</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>7</elapsed><player2>41816</player2><subtype>shot</subtype><player1>42003</player1><sortorder>3</sortorder><team>9976</team><id>1541562</id><n>121</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>39</elapsed><player2>35575</player2><subtype>shot</subtype><player1>32747</player1><sortorder>6</sortorder><team>8540</team><id>1541761</id><n>136</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>53</elapsed><player2>147951</player2><subtype>shot</subtype><player1>39419</player1><sortorder>5</sortorder><team>8540</team><id>1541984</id><n>143</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>159</event_incident_typefk><elapsed>65</elapsed><subtype>saved</subtype><player1>32747</player1><sortorder>0</sortorder><team>8540</team><id>1542081</id><n>58</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>16</value><value>63</value></coordinates><elapsed>27</elapsed><player2>110148</player2><subtype>shot</subtype><player1>39109</player1><sortorder>2</sortorder><team>10194</team><id>5578486</id><n>182</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>15</value><value>7</value></coordinates><elapsed>47</elapsed><player2>160194</player2><subtype>shot</subtype><player1>363340</player1><sortorder>2</sortorder><team>9826</team><id>5579705</id><n>295</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>29</value><value>17</value></coordinates><elapsed>68</elapsed><subtype>direct_freekick</subtype><player1>363340</player1><sortorder>1</sortorder><team>9826</team><id>5580407</id><n>426</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>24123</player1><sortorder>0</sortorder><team>8661</team><id>1626587</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>18</elapsed><player1>196311</player1><sortorder>1</sortorder><team>8358</team><id>3988326</id><n>36</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>31</value><value>9</value></coordinates><elapsed>89</elapsed><subtype>shot</subtype><player1>215804</player1><sortorder>2</sortorder><team>8460</team><id>3989973</id><n>253</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>62</value></coordinates><elapsed>49</elapsed><player2>42437</player2><subtype>shot</subtype><player1>109121</player1><sortorder>3</sortorder><team>8533</team><id>4263929</id><n>296</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>16</value><value>63</value></coordinates><elapsed>68</elapsed><player2>42437</player2><subtype>volley</subtype><player1>109121</player1><sortorder>2</sortorder><team>8533</team><id>4264207</id><n>419</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>19</value><value>54</value></coordinates><elapsed>20</elapsed><player2>156726</player2><subtype>distance</subtype><player1>49939</player1><sortorder>0</sortorder><team>9823</team><id>4791230</id><n>129</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>61</value></coordinates><elapsed>62</elapsed><player2>141370</player2><subtype>shot</subtype><player1>429265</player1><sortorder>1</sortorder><team>9823</team><id>4792780</id><n>522</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>649</event_incident_typefk><coordinates><value>16</value><value>67</value></coordinates><elapsed>63</elapsed><subtype>tap_in</subtype><player1>141370</player1><sortorder>2</sortorder><team>9823</team><id>4792799</id><n>427</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>22</value><value>63</value></coordinates><elapsed>74</elapsed><player2>163670</player2><subtype>header</subtype><player1>282770</player1><sortorder>2</sortorder><team>8636</team><id>5472264</id><n>493</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>47</elapsed><player2>41198</player2><player1>179845</player1><sortorder>0</sortorder><team>9853</team><id>3446371</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>57</elapsed><player1>26374</player1><sortorder>0</sortorder><team>9853</team><id>3446488</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>71</elapsed><player1>179772</player1><sortorder>0</sortorder><team>8315</team><id>3159733</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>3</elapsed><player2>31317</player2><subtype>header</subtype><player1>23291</player1><sortorder>1</sortorder><team>8602</team><id>876398</id><n>234</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>7</elapsed><player2>107281</player2><subtype>shot</subtype><player1>42873</player1><sortorder>3</sortorder><team>9905</team><id>1615978</id><n>407</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>12</elapsed><subtype>shot</subtype><player1>22313</player1><sortorder>0</sortorder><team>9905</team><id>1616019</id><n>397</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>57</elapsed><player2>30655</player2><subtype>shot</subtype><player1>36784</player1><sortorder>4</sortorder><team>10189</team><id>1616605</id><n>472</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>64</elapsed><player2>26437</player2><subtype>header</subtype><player1>68253</player1><sortorder>2</sortorder><team>10189</team><id>1616667</id><n>484</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><elapsed>82</elapsed><subtype>header</subtype><player1>171698</player1><sortorder>1</sortorder><team>10189</team><id>1616796</id><n>520</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>90</elapsed><subtype>direct_freekick</subtype><player1>43061</player1><sortorder>0</sortorder><team>10189</team><id>1616871</id><n>530</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>26</value><value>64</value></coordinates><elapsed>46</elapsed><player2>25496</player2><subtype>tap_in</subtype><player1>248689</player1><sortorder>6</sortorder><team>8592</team><id>4292802</id><n>283</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><coordinates><value>26</value><value>64</value></coordinates><elapsed>67</elapsed><subtype>loose_ball</subtype><player1>31037</player1><sortorder>2</sortorder><team>8592</team><id>4293216</id><n>575</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>21</value><value>64</value></coordinates><elapsed>72</elapsed><player2>280965</player2><subtype>tap_in</subtype><player1>95955</player1><sortorder>2</sortorder><team>8592</team><id>4293314</id><n>429</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>80</event_incident_typefk><coordinates><value>16</value><value>61</value></coordinates><elapsed>90</elapsed><subtype>shot</subtype><player1>248689</player1><sortorder>14</sortorder><team>8592</team><id>4293524</id><n>565</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>45</elapsed><player1>538499</player1><sortorder>4</sortorder><team>8277</team><id>4670527</id><n>178</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>28</value><value>8</value></coordinates><elapsed>68</elapsed><player2>566158</player2><subtype>shot</subtype><player1>114503</player1><sortorder>2</sortorder><team>8277</team><id>4670915</id><n>311</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>10</value><value>13</value></coordinates><elapsed>80</elapsed><player2>40662</player2><subtype>distance</subtype><player1>521945</player1><sortorder>1</sortorder><team>8277</team><id>4671006</id><n>365</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>31</elapsed><player1>208230</player1><sortorder>0</sortorder><team>9776</team><id>3043707</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>86</elapsed><player1>29255</player1><sortorder>0</sortorder><team>9776</team><id>3044418</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>52</elapsed><player2>29581</player2><subtype>distance</subtype><player1>40015</player1><sortorder>0</sortorder><team>8528</team><id>1518841</id><n>212</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>55</elapsed><player2>38802</player2><subtype>header</subtype><player1>41980</player1><sortorder>1</sortorder><team>8472</team><id>1518906</id><n>217</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>66</elapsed><player2>30905</player2><subtype>shot</subtype><player1>156008</player1><sortorder>1</sortorder><team>8472</team><id>1519089</id><n>227</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>73</elapsed><player1>33468</player1><sortorder>0</sortorder><team>8472</team><id>1519197</id><n>231</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>77</elapsed><player2>33468</player2><subtype>shot</subtype><player1>156008</player1><sortorder>1</sortorder><team>8472</team><id>1519255</id><n>237</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>106228</player2><subtype>shot</subtype><player1>49825</player1><sortorder>1</sortorder><team>8528</team><id>1519455</id><n>250</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>14</elapsed><subtype>shot</subtype><player1>33639</player1><sortorder>4</sortorder><team>8636</team><id>892002</id><n>193</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>18</elapsed><player1>25366</player1><sortorder>0</sortorder><team>8697</team><id>797607</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>22</elapsed><player1>35606</player1><sortorder>0</sortorder><team>8697</team><id>797611</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>14</elapsed><player1>78990</player1><sortorder>0</sortorder><team>8226</team><id>798642</id><n>15</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>17</value><value>12</value></coordinates><elapsed>5</elapsed><player1>411617</player1><sortorder>2</sortorder><team>8315</team><id>5048907</id><n>79</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><coordinates><value>15</value><value>6</value></coordinates><elapsed>59</elapsed><subtype>volley</subtype><player1>534484</player1><sortorder>4</sortorder><team>7878</team><id>5049722</id><n>499</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>39</elapsed><player1>34602</player1><sortorder>0</sortorder><team>9790</team><id>1492762</id><n>325</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>6</event_incident_typefk><elapsed>90</elapsed><subtype>volley</subtype><player1>43319</player1><sortorder>0</sortorder><team>9789</team><id>1494007</id><n>402</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>22</value><value>2</value></coordinates><elapsed>58</elapsed><player2>93457</player2><subtype>tap_in</subtype><player1>210146</player1><sortorder>3</sortorder><team>8689</team><id>3680387</id><n>193</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>32</value><value>6</value></coordinates><elapsed>80</elapsed><player2>187669</player2><subtype>shot</subtype><player1>562694</player1><sortorder>1</sortorder><team>8689</team><id>3680731</id><n>206</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>6</value></coordinates><elapsed>83</elapsed><player2>562694</player2><subtype>shot</subtype><player1>154280</player1><sortorder>1</sortorder><team>8689</team><id>3680765</id><n>207</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>4</elapsed_plus><event_incident_typefk>393</event_incident_typefk><coordinates><value>30</value><value>6</value></coordinates><elapsed>90</elapsed><player2>352994</player2><subtype>shot</subtype><player1>562694</player1><sortorder>3</sortorder><team>8689</team><id>3680897</id><n>210</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>406</event_incident_typefk><coordinates><value>25</value><value>6</value></coordinates><elapsed>90</elapsed><player2>56678</player2><subtype>header</subtype><player1>184138</player1><sortorder>8</sortorder><team>9906</team><id>5017458</id><n>568</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>60</elapsed><player1>41269</player1><sortorder>0</sortorder><team>9804</team><id>3228086</id><n>27</n><type>goal</type><goal_type>p</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>90</elapsed><player1>161660</player1><sortorder>0</sortorder><team>9804</team><id>3228155</id><n>21</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player1>105548</player1><sortorder>0</sortorder><team>8540</team><id>1010756</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>75</elapsed><player1>37526</player1><sortorder>0</sortorder><team>10233</team><id>1011424</id><n>32</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>78</elapsed><player1>129391</player1><sortorder>0</sortorder><team>8540</team><id>1011508</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>90</elapsed><player1>39393</player1><sortorder>0</sortorder><team>10233</team><id>1011882</id><n>30</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>60</elapsed><player1>30827</player1><sortorder>0</sortorder><team>8697</team><id>1598491</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>81</elapsed><player1>30827</player1><sortorder>0</sortorder><team>8697</team><id>1598585</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>23</elapsed><player1>30649</player1><sortorder>0</sortorder><team>10189</team><id>1284126</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>30655</player1><sortorder>0</sortorder><team>10189</team><id>1284406</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player1>30655</player1><sortorder>0</sortorder><team>10189</team><id>1284716</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>71</elapsed><player1>30655</player1><sortorder>0</sortorder><team>10189</team><id>1284841</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>13</elapsed><player1>30646</player1><sortorder>0</sortorder><team>9864</team><id>3114336</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>33</elapsed><player1>37441</player1><sortorder>0</sortorder><team>8603</team><id>3114347</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>61</elapsed><player1>11758</player1><sortorder>0</sortorder><team>9864</team><id>3114374</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>63</elapsed><player1>172147</player1><sortorder>0</sortorder><team>8603</team><id>3114376</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>474672</player1><sortorder>0</sortorder><team>9864</team><id>3114403</id><n>29</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><coordinates><value>22</value><value>7</value></coordinates><elapsed>65</elapsed><subtype>shot</subtype><player1>470868</player1><sortorder>1</sortorder><team>8564</team><id>5526298</id><n>309</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>20</elapsed><player1>113318</player1><sortorder>0</sortorder><team>8535</team><id>2369220</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>56</elapsed><player1>27599</player1><sortorder>0</sortorder><team>10167</team><id>2369362</id><n>11</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>88</elapsed><player1>92666</player1><sortorder>0</sortorder><team>8535</team><id>2369419</id><n>12</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>90</elapsed><player1>27599</player1><sortorder>0</sortorder><team>10167</team><id>2369420</id><n>31</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>17</elapsed><player1>30638</player1><sortorder>0</sortorder><team>8543</team><id>1738201</id><n>14</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>63</elapsed><player1>37273</player1><sortorder>0</sortorder><team>8530</team><id>1738911</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>35</elapsed><player1>40139</player1><sortorder>0</sortorder><team>7878</team><id>1844585</id><n>212</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>45</elapsed><subtype>shot</subtype><player1>29904</player1><sortorder>10</sortorder><team>7878</team><id>1844783</id><n>275</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>60</elapsed><player2>74734</player2><subtype>header</subtype><player1>30922</player1><sortorder>1</sortorder><team>8581</team><id>1845019</id><n>229</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>8</elapsed><player1>39834</player1><sortorder>0</sortorder><team>9904</team><id>566049</id><n>14</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>22</elapsed><player2>116772</player2><subtype>volley</subtype><player1>27326</player1><sortorder>1</sortorder><team>9823</team><id>1395560</id><n>225</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>43</elapsed><player2>30894</player2><subtype>shot</subtype><player1>27300</player1><sortorder>4</sortorder><team>9823</team><id>1395786</id><n>244</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>55</elapsed><player2>37381</player2><subtype>shot</subtype><player1>178804</player1><sortorder>2</sortorder><team>8722</team><id>1396326</id><n>258</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>62</elapsed><player2>13428</player2><subtype>header</subtype><player1>38848</player1><sortorder>3</sortorder><team>8722</team><id>1396460</id><n>306</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>73</elapsed><player2>185336</player2><subtype>shot</subtype><player1>38848</player1><sortorder>5</sortorder><team>8722</team><id>1396547</id><n>286</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>67</elapsed><subtype>shot</subtype><player1>24160</player1><sortorder>1</sortorder><team>8668</team><id>1243376</id><n>134</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>54</elapsed><player1>40197</player1><sortorder>0</sortorder><team>9853</team><id>3217727</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>61</elapsed><player1>145070</player1><sortorder>0</sortorder><team>9853</team><id>3217731</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>59</value></coordinates><elapsed>49</elapsed><player2>110189</player2><subtype>shot</subtype><player1>194165</player1><sortorder>1</sortorder><team>8586</team><id>4064473</id><n>252</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>69</elapsed><player1>363340</player1><sortorder>0</sortorder><team>9826</team><id>4064575</id><n>350</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>26</value><value>7</value></coordinates><elapsed>80</elapsed><subtype>shot</subtype><player1>35345</player1><sortorder>4</sortorder><team>9826</team><id>4064675</id><n>431</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>23</value><value>12</value></coordinates><elapsed>3</elapsed><subtype>direct_freekick</subtype><player1>102879</player1><sortorder>0</sortorder><team>8558</team><id>4698069</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>69</elapsed><player1>18733</player1><sortorder>0</sortorder><team>8530</team><id>2715890</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>147951</player1><sortorder>0</sortorder><team>8540</team><id>2716089</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>66</elapsed><subtype>shot</subtype><player1>213489</player1><sortorder>4</sortorder><team>8558</team><id>1945002</id><n>292</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>70</elapsed><player1>150770</player1><sortorder>1</sortorder><team>8305</team><id>1945025</id><n>297</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>9</elapsed><player1>23991</player1><sortorder>0</sortorder><team>10003</team><id>1693527</id><n>255</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>85</elapsed><subtype>shot</subtype><player1>38759</player1><sortorder>0</sortorder><team>10003</team><id>1694941</id><n>333</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>4</elapsed><player2>30840</player2><subtype>header</subtype><player1>30830</player1><sortorder>0</sortorder><team>8586</team><id>1392222</id><n>293</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>23</value><value>15</value></coordinates><elapsed>51</elapsed><player2>190669</player2><subtype>distance</subtype><player1>484906</player1><sortorder>3</sortorder><team>8306</team><id>5170464</id><n>320</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>64</value></coordinates><elapsed>72</elapsed><player2>75445</player2><subtype>shot</subtype><player1>30646</player1><sortorder>1</sortorder><team>9864</team><id>5170569</id><n>429</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>48</elapsed><player2>18814</player2><subtype>shot</subtype><player1>28467</player1><sortorder>5</sortorder><team>8633</team><id>649662</id><n>274</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><coordinates><value>23</value><value>59</value></coordinates><elapsed>43</elapsed><subtype>shot</subtype><player1>26114</player1><sortorder>0</sortorder><team>9747</team><id>4763116</id><n>236</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>30</value><value>52</value></coordinates><elapsed>76</elapsed><player2>26330</player2><subtype>shot</subtype><player1>103869</player1><sortorder>7</sortorder><team>9747</team><id>4763833</id><n>464</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>24</value><value>68</value></coordinates><elapsed>5</elapsed><player2>46892</player2><subtype>tap_in</subtype><player1>41175</player1><sortorder>2</sortorder><team>9837</team><id>4366700</id><n>48</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>406</event_incident_typefk><coordinates><value>21</value><value>66</value></coordinates><elapsed>45</elapsed><player2>89476</player2><subtype>header</subtype><player1>210683</player1><sortorder>6</sortorder><team>9837</team><id>4367494</id><n>273</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>4</value></coordinates><elapsed>47</elapsed><player2>156716</player2><subtype>shot</subtype><player1>79246</player1><sortorder>4</sortorder><team>7794</team><id>4367624</id><n>315</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>38</elapsed><player1>27326</player1><sortorder>0</sortorder><team>9823</team><id>2632220</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>63</elapsed><player1>11758</player1><sortorder>0</sortorder><team>9864</team><id>1279809</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>66</value></coordinates><elapsed>38</elapsed><player2>585237</player2><subtype>shot</subtype><player1>155738</player1><sortorder>2</sortorder><team>8686</team><id>4142010</id><n>209</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>12</value><value>59</value></coordinates><elapsed>85</elapsed><player2>585237</player2><subtype>volley</subtype><player1>237606</player1><sortorder>1</sortorder><team>8686</team><id>4142880</id><n>447</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>5</elapsed_plus><event_incident_typefk>406</event_incident_typefk><coordinates><value>23</value><value>5</value></coordinates><elapsed>90</elapsed><player2>210704</player2><subtype>header</subtype><player1>195998</player1><sortorder>14</sortorder><team>8529</team><id>4143048</id><n>500</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>53</elapsed><player1>31235</player1><sortorder>0</sortorder><team>8721</team><id>3181361</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>59</elapsed><player1>25819</player1><sortorder>0</sortorder><team>9788</team><id>3181391</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>64</elapsed><player1>38398</player1><sortorder>0</sortorder><team>9788</team><id>3181411</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>85</elapsed><player1>104045</player1><sortorder>0</sortorder><team>8721</team><id>3181465</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>12</elapsed><player1>30839</player1><sortorder>1</sortorder><team>8668</team><id>1759068</id><n>264</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>29</elapsed><player2>35411</player2><subtype>distance</subtype><player1>24890</player1><sortorder>2</sortorder><team>10261</team><id>1759114</id><n>290</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>406</event_incident_typefk><elapsed>45</elapsed><player2>42714</player2><subtype>header</subtype><player1>109058</player1><sortorder>2</sortorder><team>8668</team><id>1759163</id><n>308</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>49</elapsed><player1>96593</player1><sortorder>0</sortorder><team>9875</team><id>777014</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player1>30284</player1><sortorder>0</sortorder><team>8551</team><id>777097</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>64</elapsed><player1>96593</player1><sortorder>0</sortorder><team>9875</team><id>777184</id><n>9</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>64</elapsed><player1>96593</player1><sortorder>0</sortorder><team>9875</team><id>777223</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><elapsed>52</elapsed><subtype>saved_back_into_play</subtype><player1>30631</player1><sortorder>0</sortorder><team>8455</team><id>2618377</id><n>152</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>63</elapsed><player2>37459</player2><subtype>shot</subtype><player1>36615</player1><sortorder>0</sortorder><team>8456</team><id>2618452</id><n>333</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>85</elapsed><player2>37459</player2><subtype>shot</subtype><player1>38817</player1><sortorder>122</sortorder><team>8456</team><id>2618585</id><n>348</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><elapsed>24</elapsed><player2>35421</player2><subtype>deflected</subtype><player1>18925</player1><sortorder>1</sortorder><team>9875</team><id>567934</id><n>175</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>27</elapsed><player2>56585</player2><subtype>header</subtype><player1>96593</player1><sortorder>2</sortorder><team>9875</team><id>567947</id><n>179</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>32</elapsed><player1>27734</player1><sortorder>0</sortorder><team>8600</team><id>567979</id><n>186</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>45</elapsed><player2>109298</player2><subtype>volley</subtype><player1>39540</player1><sortorder>2</sortorder><team>8600</team><id>568034</id><n>193</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>27</value><value>67</value></coordinates><elapsed>10</elapsed><player2>184533</player2><subtype>header</subtype><player1>30871</player1><sortorder>3</sortorder><team>9906</team><id>3718436</id><n>262</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>26</elapsed><player1>30893</player1><sortorder>0</sortorder><team>8633</team><id>3718739</id><n>283</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>62</value></coordinates><elapsed>76</elapsed><player2>38424</player2><subtype>shot</subtype><player1>39792</player1><sortorder>6</sortorder><team>9906</team><id>3719866</id><n>353</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>41</elapsed><player2>41244</player2><subtype>shot</subtype><player1>40203</player1><sortorder>2</sortorder><team>10269</team><id>920690</id><n>217</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>346</event_incident_typefk><elapsed>62</elapsed><player1>46700</player1><sortorder>1</sortorder><team>8358</team><id>920721</id><n>113</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>dg</comment><event_incident_typefk>289</event_incident_typefk><elapsed>62</elapsed><sortorder>0</sortorder><team>8358</team><id>920722</id><n>47</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>dg</comment><event_incident_typefk>346</event_incident_typefk><elapsed>85</elapsed><player1>40203</player1><sortorder>1</sortorder><team>10269</team><id>920773</id><n>153</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>64</value></coordinates><elapsed>55</elapsed><player2>128360</player2><subtype>shot</subtype><player1>599425</player1><sortorder>3</sortorder><team>7869</team><id>4332709</id><n>309</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>25</value><value>4</value></coordinates><elapsed>87</elapsed><player1>599425</player1><sortorder>2</sortorder><team>7869</team><id>4332916</id><n>507</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>25</elapsed><player2>35724</player2><subtype>shot</subtype><player1>33974</player1><sortorder>5</sortorder><team>8564</team><id>1420326</id><n>193</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>61</elapsed><player2>26522</player2><subtype>header</subtype><player1>42119</player1><sortorder>6</sortorder><team>8533</team><id>1420814</id><n>233</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>82</elapsed><subtype>shot</subtype><player1>46554</player1><sortorder>3</sortorder><team>8564</team><id>1421029</id><n>256</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>2</elapsed><player1>45220</player1><sortorder>0</sortorder><team>8530</team><id>2403069</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>80</elapsed><player1>37273</player1><sortorder>0</sortorder><team>8530</team><id>2403739</id><n>28</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>33</elapsed><player1>102699</player1><sortorder>0</sortorder><team>9873</team><id>1562856</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player1>95955</player1><sortorder>0</sortorder><team>8592</team><id>1562862</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>37</elapsed><player1>39987</player1><sortorder>0</sortorder><team>8592</team><id>1562905</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>65</elapsed><player1>5202</player1><sortorder>0</sortorder><team>9873</team><id>1563314</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>7</value></coordinates><elapsed>58</elapsed><player2>41124</player2><subtype>shot</subtype><player1>503149</player1><sortorder>3</sortorder><team>10249</team><id>5583037</id><n>352</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>7</value></coordinates><elapsed>70</elapsed><player2>503149</player2><subtype>shot</subtype><player1>155623</player1><sortorder>1</sortorder><team>10249</team><id>5583371</id><n>462</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>23</elapsed><player2>33960</player2><subtype>shot</subtype><player1>37416</player1><sortorder>2</sortorder><team>8560</team><id>1356763</id><n>220</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>25</elapsed><player2>34106</player2><subtype>volley</subtype><player1>33989</player1><sortorder>2</sortorder><team>8302</team><id>1356767</id><n>224</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>44</elapsed><subtype>distance</subtype><player1>38551</player1><sortorder>1</sortorder><team>8560</team><id>1356808</id><n>243</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>63</elapsed><player2>75310</player2><subtype>shot</subtype><player1>34106</player1><sortorder>3</sortorder><team>8302</team><id>1356852</id><n>281</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>65</elapsed><player2>75310</player2><subtype>shot</subtype><player1>33989</player1><sortorder>1</sortorder><team>8302</team><id>1356853</id><n>262</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>75</elapsed><subtype>distance</subtype><player1>49677</player1><sortorder>0</sortorder><team>8540</team><id>777257</id><n>341</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>84</elapsed><subtype>shot</subtype><player1>18506</player1><sortorder>5</sortorder><team>8543</team><id>777376</id><n>353</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>49</elapsed><player1>38577</player1><sortorder>0</sortorder><team>8394</team><id>849119</id><n>220</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>74</elapsed><player2>32763</player2><subtype>header</subtype><player1>188517</player1><sortorder>2</sortorder><team>9864</team><id>849210</id><n>246</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>12</elapsed><player2>158581</player2><player1>108038</player1><sortorder>0</sortorder><team>8640</team><id>4336321</id><n>8</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player2>46056</player2><player1>112477</player1><sortorder>0</sortorder><team>6413</team><id>4336395</id><n>15</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>50</elapsed><player1>389845</player1><sortorder>0</sortorder><team>8640</team><id>4336553</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>150201</player1><sortorder>2</sortorder><team>8640</team><id>4336710</id><n>39</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>26</elapsed><player1>188413</player1><sortorder>0</sortorder><team>9941</team><id>2524927</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>85</elapsed><player1>161420</player1><sortorder>0</sortorder><team>9941</team><id>2525142</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>30</elapsed><player2>34479</player2><subtype>header</subtype><player1>30956</player1><sortorder>0</sortorder><team>9879</team><id>1242758</id><n>189</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>44</elapsed><player2>43247</player2><subtype>shot</subtype><player1>30956</player1><sortorder>2</sortorder><team>9879</team><id>1242964</id><n>206</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>24</elapsed><subtype>saved_back_into_play</subtype><player1>26221</player1><sortorder>0</sortorder><team>9830</team><id>3663131</id><n>45</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>19</value><value>66</value></coordinates><elapsed>45</elapsed><player2>215798</player2><subtype>header</subtype><player1>22543</player1><sortorder>2</sortorder><team>9829</team><id>3663248</id><n>210</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>85</elapsed><player1>108809</player1><sortorder>0</sortorder><team>8371</team><id>2519646</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>90</elapsed><player1>24383</player1><sortorder>0</sortorder><team>8305</team><id>2519724</id><n>31</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>21</elapsed><player2>37169</player2><subtype>shot</subtype><player1>35411</player1><sortorder>0</sortorder><team>8654</team><id>1440139</id><n>146</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>29</elapsed><player2>30628</player2><subtype>header</subtype><player1>39658</player1><sortorder>6</sortorder><team>8654</team><id>1440244</id><n>158</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>83</elapsed><subtype>shot</subtype><player1>30628</player1><sortorder>0</sortorder><team>8654</team><id>1441320</id><n>197</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>7</elapsed><subtype>direct_freekick</subtype><player1>45749</player1><sortorder>1</sortorder><team>8603</team><id>1662810</id><n>362</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>13</elapsed><player2>150644</player2><subtype>shot</subtype><player1>38025</player1><sortorder>7</sortorder><team>8603</team><id>1662834</id><n>364</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>38</elapsed><player2>96619</player2><subtype>shot</subtype><player1>181297</player1><sortorder>4</sortorder><team>8315</team><id>1662971</id><n>398</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>20</event_incident_typefk><elapsed>45</elapsed><player1>102879</player1><sortorder>0</sortorder><team>8603</team><id>1663010</id><n>402</n><type>goal</type><goal_type>p</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>86</elapsed><player1>33866</player1><sortorder>3</sortorder><team>8315</team><id>1663182</id><n>479</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>12</elapsed><player2>75447</player2><player1>177714</player1><sortorder>0</sortorder><team>9823</team><id>3241475</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>30924</player1><sortorder>0</sortorder><team>9823</team><id>3241633</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>67</elapsed><player2>177714</player2><player1>30834</player1><sortorder>0</sortorder><team>9823</team><id>3241903</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>69</elapsed><player2>30924</player2><player1>38432</player1><sortorder>0</sortorder><team>9823</team><id>3241909</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player2>30834</player2><player1>75447</player1><sortorder>0</sortorder><team>9823</team><id>3241976</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>dg</comment><event_incident_typefk>346</event_incident_typefk><elapsed>8</elapsed><player1>30981</player1><sortorder>0</sortorder><team>8634</team><id>1459289</id><n>16</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>30</elapsed><player2>33988</player2><subtype>shot</subtype><player1>96643</player1><sortorder>12</sortorder><team>8634</team><id>1459378</id><n>199</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>49</elapsed><player2>75310</player2><subtype>header</subtype><player1>33991</player1><sortorder>1</sortorder><team>8302</team><id>1459462</id><n>216</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>30</value><value>8</value></coordinates><elapsed>18</elapsed><player1>71768</player1><sortorder>2</sortorder><team>9790</team><id>5398501</id><n>149</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>4</elapsed><player1>102572</player1><sortorder>0</sortorder><team>8305</team><id>1541554</id><n>33</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>53</elapsed><player1>75619</player1><sortorder>0</sortorder><team>8305</team><id>1541958</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>72</elapsed><player1>34531</player1><sortorder>0</sortorder><team>8690</team><id>391881</id><n>20</n><type>goal</type><goal_type>p</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>76</elapsed><player1>39286</player1><sortorder>0</sortorder><team>8533</team><id>391882</id><n>21</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>88</elapsed><player1>42581</player1><sortorder>0</sortorder><team>8533</team><id>391986</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>62</value></coordinates><elapsed>80</elapsed><player2>22964</player2><subtype>shot</subtype><player1>30348</player1><sortorder>8</sortorder><team>8472</team><id>5052158</id><n>472</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><elapsed>23</elapsed><player2>93480</player2><subtype>deflected</subtype><player1>134236</player1><sortorder>0</sortorder><team>10267</team><id>1990531</id><n>155</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>42</elapsed><subtype>shot</subtype><player1>33028</player1><sortorder>2</sortorder><team>10267</team><id>1990859</id><n>220</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>57</elapsed><player2>200630</player2><subtype>shot</subtype><player1>103904</player1><sortorder>5</sortorder><team>8661</team><id>1991157</id><n>226</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>66</elapsed><player2>103904</player2><subtype>shot</subtype><player1>25462</player1><sortorder>6</sortorder><team>8661</team><id>1991238</id><n>185</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player2>41658</player2><player1>25759</player1><sortorder>0</sortorder><team>9875</team><id>3328021</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player1>41124</player1><sortorder>0</sortorder><team>10249</team><id>2283530</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>72</elapsed><player1>210184</player1><sortorder>0</sortorder><team>9941</team><id>2283639</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>19</elapsed><player1>36774</player1><sortorder>0</sortorder><team>9905</team><id>2022156</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>49</elapsed><player1>95082</player1><sortorder>0</sortorder><team>9905</team><id>2022777</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>74</elapsed><player1>95082</player1><sortorder>0</sortorder><team>9905</team><id>2022994</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>25</elapsed><player1>210398</player1><sortorder>0</sortorder><team>9851</team><id>3091247</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>32</elapsed><player1>478393</player1><sortorder>0</sortorder><team>9851</team><id>3091258</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>43</elapsed><player1>102699</player1><sortorder>0</sortorder><team>9851</team><id>3091270</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>63</elapsed><player1>156556</player1><sortorder>0</sortorder><team>9851</team><id>3091330</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>83</elapsed><player1>156556</player1><sortorder>0</sortorder><team>9851</team><id>3091369</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>83</elapsed><player2>213812</player2><player1>49836</player1><sortorder>0</sortorder><team>9910</team><id>3267263</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>213486</player1><sortorder>0</sortorder><team>9910</team><id>3267401</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>dg</comment><event_incident_typefk>346</event_incident_typefk><elapsed>18</elapsed><player1>16300</player1><sortorder>0</sortorder><team>8177</team><id>515208</id><n>65</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>65</elapsed><player2>26437</player2><subtype>header</subtype><player1>30702</player1><sortorder>1</sortorder><team>10189</team><id>515913</id><n>315</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>23</elapsed><player1>30922</player1><sortorder>0</sortorder><team>8581</team><id>1917246</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>61</elapsed><player1>97319</player1><sortorder>0</sortorder><team>8696</team><id>1917710</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>23</value><value>65</value></coordinates><elapsed>8</elapsed><player2>206508</player2><subtype>header</subtype><player1>301456</player1><sortorder>3</sortorder><team>8636</team><id>5262449</id><n>66</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>22</value><value>4</value></coordinates><elapsed>13</elapsed><player2>182606</player2><subtype>header</subtype><player1>287337</player1><sortorder>0</sortorder><team>9876</team><id>5262477</id><n>83</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>20</value><value>4</value></coordinates><elapsed>16</elapsed><player2>182606</player2><subtype>header</subtype><player1>97789</player1><sortorder>1</sortorder><team>9876</team><id>5262499</id><n>99</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>22</value><value>4</value></coordinates><elapsed>57</elapsed><player2>182606</player2><subtype>header</subtype><player1>168727</player1><sortorder>1</sortorder><team>9876</team><id>5262953</id><n>370</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>65</value></coordinates><elapsed>61</elapsed><player2>163670</player2><subtype>shot</subtype><player1>282770</player1><sortorder>4</sortorder><team>8636</team><id>5262990</id><n>385</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>68</value></coordinates><elapsed>78</elapsed><player2>30991</player2><subtype>shot</subtype><player1>163670</player1><sortorder>2</sortorder><team>8636</team><id>5263132</id><n>495</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>6</elapsed><subtype>shot</subtype><player1>30905</player1><sortorder>2</sortorder><team>8636</team><id>695855</id><n>221</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>10</elapsed><player2>42579</player2><subtype>header</subtype><player1>38762</player1><sortorder>1</sortorder><team>8524</team><id>695906</id><n>223</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>12</elapsed><player2>30930</player2><subtype>shot</subtype><player1>35724</player1><sortorder>1</sortorder><team>8636</team><id>695937</id><n>229</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>25</elapsed><subtype>distance</subtype><player1>27671</player1><sortorder>3</sortorder><team>8524</team><id>696109</id><n>248</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>53</elapsed><subtype>direct_freekick</subtype><player1>38762</player1><sortorder>0</sortorder><team>8524</team><id>696483</id><n>288</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>289</event_incident_typefk><elapsed>60</elapsed><sortorder>3</sortorder><team>8636</team><id>696583</id><n>138</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>dg</comment><event_incident_typefk>289</event_incident_typefk><elapsed>74</elapsed><sortorder>3</sortorder><team>8636</team><id>696776</id><n>170</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>80</elapsed><subtype>loose_ball</subtype><player1>30930</player1><sortorder>1</sortorder><team>8636</team><id>696830</id><n>325</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>81</elapsed><player2>35561</player2><subtype>shot</subtype><player1>35724</player1><sortorder>0</sortorder><team>8636</team><id>696839</id><n>324</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>71</elapsed><player1>39311</player1><sortorder>0</sortorder><team>8535</team><id>621566</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>3</elapsed><subtype>shot</subtype><player1>32763</player1><sortorder>2</sortorder><team>9864</team><id>568317</id><n>235</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>37</elapsed><player2>33030</player2><subtype>distance</subtype><player1>30277</player1><sortorder>1</sortorder><team>8315</team><id>568460</id><n>273</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>63</elapsed><player2>37450</player2><subtype>header</subtype><player1>38151</player1><sortorder>2</sortorder><team>9864</team><id>568599</id><n>304</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>71</elapsed><subtype>distance</subtype><player1>33030</player1><sortorder>1</sortorder><team>8315</team><id>568632</id><n>313</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>86</elapsed><player2>150832</player2><subtype>header</subtype><player1>96619</player1><sortorder>4</sortorder><team>8315</team><id>568679</id><n>329</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>28</value><value>7</value></coordinates><elapsed>21</elapsed><player2>94267</player2><subtype>header</subtype><player1>26552</player1><sortorder>1</sortorder><team>8466</team><id>4909130</id><n>150</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>27</value><value>2</value></coordinates><elapsed>38</elapsed><subtype>shot</subtype><player1>209405</player1><sortorder>1</sortorder><team>8466</team><id>4909485</id><n>308</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>19</value><value>63</value></coordinates><elapsed>67</elapsed><player2>23305</player2><subtype>header</subtype><player1>286119</player1><sortorder>1</sortorder><team>8197</team><id>4910693</id><n>657</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>62</value></coordinates><elapsed>90</elapsed><player2>278343</player2><subtype>shot</subtype><player1>286119</player1><sortorder>5</sortorder><team>8197</team><id>4911221</id><n>890</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>61</elapsed><player2>23783</player2><subtype>header</subtype><player1>106228</player1><sortorder>2</sortorder><team>8455</team><id>2455658</id><n>158</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>88</elapsed><player2>157369</player2><subtype>shot</subtype><player1>2802</player1><sortorder>1</sortorder><team>10003</team><id>2456112</id><n>166</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>288</event_incident_typefk><elapsed>27</elapsed><subtype>deflected</subtype><player1>38460</player1><sortorder>1</sortorder><team>9906</team><id>662296</id><n>222</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>41</elapsed><player2>38460</player2><subtype>shot</subtype><player1>30663</player1><sortorder>1</sortorder><team>9906</team><id>662327</id><n>236</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>46</elapsed><player2>38460</player2><subtype>shot</subtype><player1>37412</player1><sortorder>2</sortorder><team>9906</team><id>662398</id><n>242</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>47</elapsed><player2>24383</player2><subtype>shot</subtype><player1>34582</player1><sortorder>1</sortorder><team>9869</team><id>662401</id><n>243</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>66</value></coordinates><elapsed>8</elapsed><player2>261609</player2><subtype>shot</subtype><player1>213809</player1><sortorder>1</sortorder><team>7878</team><id>3873203</id><n>52</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>27</value><value>13</value></coordinates><elapsed>37</elapsed><subtype>distance</subtype><player1>170341</player1><sortorder>6</sortorder><team>8372</team><id>3873419</id><n>161</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>31</elapsed><subtype>shot</subtype><player1>108809</player1><sortorder>2</sortorder><team>8371</team><id>1487718</id><n>243</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>39</elapsed><subtype>shot</subtype><player1>19243</player1><sortorder>3</sortorder><team>9906</team><id>1487759</id><n>262</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>60</elapsed><subtype>shot</subtype><player1>19243</player1><sortorder>7</sortorder><team>9906</team><id>1487910</id><n>271</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>63</elapsed><subtype>shot</subtype><player1>19243</player1><sortorder>1</sortorder><team>9906</team><id>1487922</id><n>283</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><elapsed>70</elapsed><subtype>saved_back_into_play</subtype><player1>38821</player1><sortorder>0</sortorder><team>9906</team><id>1487956</id><n>160</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>80</elapsed><player1>42369</player1><sortorder>0</sortorder><team>8371</team><id>1488009</id><n>326</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>14</elapsed><player1>243439</player1><sortorder>0</sortorder><team>9791</team><id>4370416</id><n>10</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>47</elapsed><player2>351999</player2><player1>147594</player1><sortorder>0</sortorder><team>9791</team><id>4371245</id><n>35</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>3</elapsed><player2>38433</player2><subtype>header</subtype><player1>24171</player1><sortorder>2</sortorder><team>8659</team><id>399696</id><n>230</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>391</event_incident_typefk><elapsed>29</elapsed><player2>30966</player2><subtype>loose_ball</subtype><player1>37169</player1><sortorder>2</sortorder><team>8654</team><id>400074</id><n>259</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>35</elapsed><player2>37277</player2><subtype>shot</subtype><player1>30687</player1><sortorder>4</sortorder><team>8654</team><id>400183</id><n>266</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>37</elapsed><player1>32570</player1><sortorder>5</sortorder><team>8659</team><id>400202</id><n>270</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>83</elapsed><player2>24728</player2><subtype>shot</subtype><player1>23257</player1><sortorder>1</sortorder><team>8659</team><id>401138</id><n>326</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player1>27316</player1><sortorder>0</sortorder><team>8697</team><id>2472826</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>60</elapsed><player1>145551</player1><sortorder>0</sortorder><team>10189</team><id>2473623</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>69</elapsed><player1>243164</player1><sortorder>0</sortorder><team>10189</team><id>2473650</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>15</elapsed><player1>30628</player1><sortorder>0</sortorder><team>10269</team><id>378917</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>26</elapsed><player1>40203</player1><sortorder>0</sortorder><team>10269</team><id>379040</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>27326</player1><sortorder>0</sortorder><team>10269</team><id>379196</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>60</elapsed><player1>31936</player1><sortorder>0</sortorder><team>9788</team><id>379399</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>49</elapsed><subtype>shot</subtype><player1>111930</player1><sortorder>4</sortorder><team>8667</team><id>3188035</id><n>217</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>60</elapsed><player2>148832</player2><subtype>shot</subtype><player1>40055</player1><sortorder>1</sortorder><team>8667</team><id>3188124</id><n>228</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>63</elapsed><player2>115681</player2><subtype>shot</subtype><player1>32304</player1><sortorder>1</sortorder><team>8667</team><id>3188149</id><n>232</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>67</elapsed><subtype>distance</subtype><player1>24656</player1><sortorder>1</sortorder><team>8667</team><id>3188190</id><n>238</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>74</elapsed><subtype>shot</subtype><player1>25389</player1><sortorder>1</sortorder><team>8667</team><id>3188252</id><n>243</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>84</elapsed><subtype>loose_ball</subtype><player1>40055</player1><sortorder>2</sortorder><team>8667</team><id>3188331</id><n>256</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>4</value></coordinates><elapsed>38</elapsed><player2>27663</player2><subtype>header</subtype><player1>237623</player1><sortorder>1</sortorder><team>9880</team><id>3689043</id><n>192</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>69</elapsed><player2>30348</player2><subtype>shot</subtype><player1>41008</player1><sortorder>3</sortorder><team>8586</team><id>2319648</id><n>213</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>85</elapsed><player2>24698</player2><subtype>shot</subtype><player1>32728</player1><sortorder>5</sortorder><team>9850</team><id>2319835</id><n>229</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>33</elapsed><player1>30655</player1><sortorder>0</sortorder><team>10189</team><id>1372858</id><n>15</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>3</elapsed><player2>33025</player2><subtype>shot</subtype><player1>150832</player1><sortorder>0</sortorder><team>8315</team><id>1548483</id><n>203</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><elapsed>22</elapsed><player2>31045</player2><subtype>deflected</subtype><player1>45744</player1><sortorder>3</sortorder><team>9783</team><id>1548533</id><n>227</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>71</elapsed><player1>74990</player1><sortorder>1</sortorder><team>8315</team><id>1548903</id><n>268</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>31</elapsed><player2>40945</player2><subtype>header</subtype><player1>30865</player1><sortorder>0</sortorder><team>10260</team><id>1244251</id><n>226</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>84</elapsed><subtype>loose_ball</subtype><player1>40945</player1><sortorder>3</sortorder><team>10260</team><id>1244790</id><n>271</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>11</elapsed><player2>30348</player2><subtype>shot</subtype><player1>40755</player1><sortorder>3</sortorder><team>8586</team><id>974835</id><n>180</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>28</elapsed><player2>38820</player2><subtype>shot</subtype><player1>31097</player1><sortorder>0</sortorder><team>8586</team><id>974898</id><n>146</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>55</elapsed><player2>109058</player2><subtype>shot</subtype><player1>24160</player1><sortorder>1</sortorder><team>8668</team><id>975192</id><n>192</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>6</elapsed><subtype>distance</subtype><player1>37436</player1><sortorder>0</sortorder><team>10205</team><id>598630</id><n>231</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>36</elapsed><player2>38699</player2><subtype>shot</subtype><player1>37436</player1><sortorder>3</sortorder><team>10205</team><id>598725</id><n>274</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>42</elapsed><player2>37426</player2><subtype>shot</subtype><player1>38578</player1><sortorder>0</sortorder><team>8603</team><id>598758</id><n>228</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>57</elapsed><player2>34233</player2><subtype>shot</subtype><player1>38751</player1><sortorder>1</sortorder><team>8603</team><id>598882</id><n>290</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>38</value><value>18</value></coordinates><elapsed>28</elapsed><subtype>direct_freekick</subtype><player1>30981</player1><sortorder>0</sortorder><team>8634</team><id>5295115</id><n>138</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>39</elapsed><player1>130298</player1><sortorder>0</sortorder><team>9910</team><id>5295180</id><n>202</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>6</value></coordinates><elapsed>59</elapsed><player2>30981</player2><subtype>shot</subtype><player1>40636</player1><sortorder>1</sortorder><team>8634</team><id>5295341</id><n>285</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>649</event_incident_typefk><coordinates><value>25</value><value>1</value></coordinates><elapsed>75</elapsed><subtype>tap_in</subtype><player1>40636</player1><sortorder>6</sortorder><team>8634</team><id>5295428</id><n>361</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>81</elapsed><player1>30981</player1><sortorder>2</sortorder><team>8634</team><id>5295447</id><n>445</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>6</value></coordinates><elapsed>81</elapsed><player2>30981</player2><subtype>shot</subtype><player1>40636</player1><sortorder>3</sortorder><team>8634</team><id>5295448</id><n>447</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>882</event_incident_typefk><coordinates><value>26</value><value>8</value></coordinates><elapsed>85</elapsed><player2>40636</player2><subtype>lob</subtype><player1>25773</player1><sortorder>2</sortorder><team>8634</team><id>5295462</id><n>403</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>882</event_incident_typefk><coordinates><value>15</value><value>7</value></coordinates><elapsed>90</elapsed><player2>40636</player2><subtype>lob</subtype><player1>19533</player1><sortorder>5</sortorder><team>8634</team><id>5295489</id><n>432</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>61</elapsed><player1>43329</player1><sortorder>0</sortorder><team>9865</team><id>1010419</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>27</elapsed><player2>39334</player2><subtype>volley</subtype><player1>35244</player1><sortorder>0</sortorder><team>8543</team><id>1245576</id><n>281</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>33</value><value>55</value></coordinates><elapsed>10</elapsed><player2>33782</player2><subtype>distance</subtype><player1>161328</player1><sortorder>2</sortorder><team>8564</team><id>3927470</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>411</event_incident_typefk><coordinates><value>21</value><value>4</value></coordinates><elapsed>45</elapsed><player2>172899</player2><subtype>volley</subtype><player1>27696</player1><sortorder>1</sortorder><team>9882</team><id>3928045</id><n>136</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>649</event_incident_typefk><coordinates><value>21</value><value>4</value></coordinates><elapsed>51</elapsed><subtype>tap_in</subtype><player1>39295</player1><sortorder>4</sortorder><team>9882</team><id>3928312</id><n>158</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>65</elapsed><player1>33782</player1><sortorder>0</sortorder><team>8564</team><id>3928393</id><n>195</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>76</elapsed><player1>25338</player1><sortorder>0</sortorder><team>9880</team><id>1905056</id><n>23</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>10</elapsed><player1>27734</player1><sortorder>0</sortorder><team>8600</team><id>458712</id><n>23</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>22</elapsed><player1>41542</player1><sortorder>0</sortorder><team>8600</team><id>458826</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>51</elapsed><player1>27734</player1><sortorder>0</sortorder><team>8600</team><id>459272</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>74</elapsed><player1>30714</player1><sortorder>0</sortorder><team>8686</team><id>459648</id><n>32</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>68</elapsed><player1>39726</player1><sortorder>0</sortorder><team>8543</team><id>954067</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player1>18506</player1><sortorder>0</sortorder><team>8543</team><id>954207</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>7</elapsed><player1>41694</player1><sortorder>0</sortorder><team>8530</team><id>1932082</id><n>23</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>49</elapsed><player1>18733</player1><sortorder>0</sortorder><team>8530</team><id>1932384</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>52</elapsed><player1>18733</player1><sortorder>0</sortorder><team>8530</team><id>1932415</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>37273</player1><sortorder>0</sortorder><team>8530</team><id>1932536</id><n>31</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>23</elapsed><player1>31199</player1><sortorder>0</sortorder><team>8178</team><id>2934622</id><n>22</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>28</elapsed><player1>71560</player1><sortorder>0</sortorder><team>8178</team><id>2934631</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>54</elapsed><player1>40735</player1><sortorder>0</sortorder><team>9788</team><id>2935098</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>57</elapsed><player1>38398</player1><sortorder>0</sortorder><team>9788</team><id>2935141</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>61</elapsed><player1>71560</player1><sortorder>0</sortorder><team>8178</team><id>2935183</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>72</elapsed><player1>27427</player1><sortorder>0</sortorder><team>8178</team><id>2935200</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>5</elapsed><player2>58499</player2><player1>17703</player1><sortorder>0</sortorder><team>10205</team><id>3347623</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>20</value><value>4</value></coordinates><elapsed>33</elapsed><player2>433311</player2><subtype>volley</subtype><player1>37474</player1><sortorder>1</sortorder><team>8372</team><id>4066199</id><n>228</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><coordinates><value>20</value><value>5</value></coordinates><elapsed>51</elapsed><player1>449492</player1><sortorder>4</sortorder><team>8372</team><id>4066294</id><n>379</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>59</value></coordinates><elapsed>80</elapsed><player2>77773</player2><subtype>shot</subtype><player1>24383</player1><sortorder>1</sortorder><team>8305</team><id>4066374</id><n>544</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>38</elapsed><player1>25550</player1><sortorder>2</sortorder><team>8659</team><id>1268904</id><n>231</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>43</elapsed><subtype>distance</subtype><player1>24223</player1><sortorder>0</sortorder><team>8654</team><id>1268998</id><n>283</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>50</elapsed><player1>26347</player1><sortorder>0</sortorder><team>8654</team><id>1269285</id><n>296</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>71</elapsed><player2>23257</player2><subtype>header</subtype><player1>30903</player1><sortorder>4</sortorder><team>8659</team><id>1269752</id><n>279</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>22</elapsed><player1>32747</player1><sortorder>0</sortorder><team>8540</team><id>548971</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>39</elapsed><player1>34540</player1><sortorder>0</sortorder><team>8540</team><id>549046</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>65</elapsed><player1>27657</player1><sortorder>0</sortorder><team>8524</team><id>549320</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>78</elapsed><player1>39190</player1><sortorder>0</sortorder><team>8524</team><id>549378</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>81</elapsed><player1>49677</player1><sortorder>0</sortorder><team>8540</team><id>549398</id><n>28</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><elapsed>25</elapsed><player2>27695</player2><subtype>tap_in</subtype><player1>96398</player1><sortorder>2</sortorder><team>8686</team><id>1784055</id><n>228</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>54</elapsed><player2>96398</player2><subtype>distance</subtype><player1>18814</player1><sortorder>0</sortorder><team>8686</team><id>1784230</id><n>225</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>61</elapsed><player2>57076</player2><subtype>shot</subtype><player1>154239</player1><sortorder>4</sortorder><team>9888</team><id>1784259</id><n>269</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>303</event_incident_typefk><elapsed>75</elapsed><subtype>bicycle_kick</subtype><player1>40165</player1><sortorder>0</sortorder><team>8686</team><id>1784317</id><n>163</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>23</elapsed><player2>31013</player2><subtype>shot</subtype><player1>46469</player1><sortorder>2</sortorder><team>9825</team><id>2957049</id><n>254</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>31</elapsed><player1>195335</player1><sortorder>0</sortorder><team>10268</team><id>3355601</id><n>17</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player2>262592</player2><player1>150644</player1><sortorder>0</sortorder><team>10205</team><id>3355689</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>37</elapsed><player1>49677</player1><sortorder>0</sortorder><team>8540</team><id>790475</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>42</elapsed><player1>33337</player1><sortorder>0</sortorder><team>8540</team><id>790487</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>npm</comment><event_incident_typefk>159</event_incident_typefk><elapsed>24</elapsed><subtype>saved</subtype><player1>37799</player1><sortorder>0</sortorder><team>10261</team><id>619747</id><n>55</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>57</elapsed><player2>3520</player2><subtype>header</subtype><player1>36410</player1><sortorder>2</sortorder><team>9825</team><id>619941</id><n>311</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>58</elapsed><subtype>loose_ball</subtype><player1>37799</player1><sortorder>0</sortorder><team>10261</team><id>619944</id><n>307</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>64</elapsed><player2>30843</player2><subtype>shot</subtype><player1>27277</player1><sortorder>0</sortorder><team>9825</team><id>619958</id><n>278</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>67</elapsed><player2>30843</player2><subtype>shot</subtype><player1>26181</player1><sortorder>0</sortorder><team>9825</team><id>619961</id><n>271</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>63</elapsed><player1>39540</player1><sortorder>0</sortorder><team>9885</team><id>2369651</id><n>15</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>68</elapsed><player1>39540</player1><sortorder>0</sortorder><team>9885</team><id>2369653</id><n>14</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>17</elapsed><player2>37379</player2><subtype>volley</subtype><player1>39847</player1><sortorder>1</sortorder><team>8350</team><id>1614557</id><n>328</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>19</elapsed><player2>13428</player2><subtype>shot</subtype><player1>108401</player1><sortorder>1</sortorder><team>8722</team><id>1614566</id><n>331</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player1>210278</player1><sortorder>0</sortorder><team>8600</team><id>2506428</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>39</elapsed><player1>155260</player1><sortorder>0</sortorder><team>8600</team><id>2506445</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>48</elapsed><player1>19249</player1><sortorder>0</sortorder><team>8600</team><id>2506526</id><n>33</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>66</elapsed><player1>39357</player1><sortorder>0</sortorder><team>8600</team><id>2506544</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>80</elapsed><player1>27672</player1><sortorder>0</sortorder><team>8529</team><id>2506575</id><n>32</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>23</value><value>64</value></coordinates><elapsed>66</elapsed><player2>41156</player2><subtype>header</subtype><player1>282676</player1><sortorder>1</sortorder><team>8560</team><id>4271344</id><n>391</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player1>75447</player1><sortorder>0</sortorder><team>8721</team><id>1539782</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>25</elapsed><player1>36389</player1><sortorder>0</sortorder><team>8350</team><id>1539907</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>39000</player1><sortorder>0</sortorder><team>8350</team><id>1540214</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>65</elapsed><player2>33816</player2><subtype>header</subtype><player1>30906</player1><sortorder>1</sortorder><team>10167</team><id>1469810</id><n>273</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>22</event_incident_typefk><elapsed>74</elapsed><subtype>missed</subtype><player1>30284</player1><sortorder>0</sortorder><team>9882</team><id>1469904</id><n>148</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player1>33782</player1><sortorder>0</sortorder><team>9847</team><id>2682459</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>35724</player1><sortorder>0</sortorder><team>9847</team><id>2682606</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>14</elapsed><player2>41468</player2><subtype>header</subtype><player1>30631</player1><sortorder>1</sortorder><team>8455</team><id>1741528</id><n>322</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>36</elapsed><player2>37950</player2><subtype>shot</subtype><player1>30843</player1><sortorder>3</sortorder><team>9825</team><id>1741654</id><n>350</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><elapsed>45</elapsed><player2>30631</player2><subtype>tap_in</subtype><player1>30627</player1><sortorder>5</sortorder><team>8455</team><id>1741704</id><n>360</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>49</elapsed><player2>23678</player2><subtype>shot</subtype><player1>78541</player1><sortorder>1</sortorder><team>9825</team><id>1741784</id><n>371</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>56</elapsed><subtype>shot</subtype><player1>31013</player1><sortorder>1</sortorder><team>9825</team><id>1741825</id><n>375</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>81</elapsed><player2>25923</player2><subtype>shot</subtype><player1>41468</player1><sortorder>0</sortorder><team>8455</team><id>1741914</id><n>403</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>85</elapsed><subtype>shot</subtype><player1>30843</player1><sortorder>3</sortorder><team>9825</team><id>1741929</id><n>408</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>24011</player2><subtype>shot</subtype><player1>30843</player1><sortorder>1</sortorder><team>9825</team><id>1741961</id><n>420</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player1>71560</player1><sortorder>0</sortorder><team>8178</team><id>2458475</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>40</elapsed><player1>37154</player1><sortorder>0</sortorder><team>8194</team><id>2458623</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>41</elapsed><player1>178812</player1><sortorder>0</sortorder><team>8178</team><id>2458624</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>66</elapsed><player1>27427</player1><sortorder>0</sortorder><team>8178</team><id>2458768</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>86</elapsed><player1>27534</player1><sortorder>0</sortorder><team>8194</team><id>2458947</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>28</value><value>64</value></coordinates><elapsed>18</elapsed><player2>150565</player2><subtype>shot</subtype><player1>129944</player1><sortorder>2</sortorder><team>9789</team><id>4905673</id><n>812</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>47</elapsed><subtype>saved_back_into_play</subtype><player1>129944</player1><sortorder>1</sortorder><team>9789</team><id>4905832</id><n>391</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>28</value><value>65</value></coordinates><elapsed>82</elapsed><player2>150565</player2><subtype>shot</subtype><player1>73167</player1><sortorder>4</sortorder><team>9789</team><id>4905996</id><n>850</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>3</elapsed><player1>200962</player1><sortorder>0</sortorder><team>8165</team><id>1439800</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>14</elapsed><player1>33772</player1><sortorder>0</sortorder><team>8165</team><id>1439826</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>17</elapsed><player1>33772</player1><sortorder>0</sortorder><team>8165</team><id>1439827</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>86</elapsed><player1>33772</player1><sortorder>0</sortorder><team>8165</team><id>1440819</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>87</elapsed><player1>33772</player1><sortorder>0</sortorder><team>8165</team><id>1440872</id><n>29</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>10</elapsed><player1>25759</player1><sortorder>0</sortorder><team>8633</team><id>2297140</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>42</elapsed><player1>39122</player1><sortorder>0</sortorder><team>10267</team><id>2297335</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>21</value><value>8</value></coordinates><elapsed>23</elapsed><subtype>shot</subtype><player1>166020</player1><sortorder>4</sortorder><team>9941</team><id>3973370</id><n>74</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>31</value><value>63</value></coordinates><elapsed>55</elapsed><subtype>shot</subtype><player1>352994</player1><sortorder>4</sortorder><team>8689</team><id>3973891</id><n>194</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>64</value></coordinates><elapsed>57</elapsed><player2>154280</player2><subtype>shot</subtype><player1>210146</player1><sortorder>1</sortorder><team>8689</team><id>3973916</id><n>205</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>60</elapsed><player1>154280</player1><sortorder>1</sortorder><team>8689</team><id>3973969</id><n>213</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>21</value><value>5</value></coordinates><elapsed>70</elapsed><subtype>shot</subtype><player1>164519</player1><sortorder>2</sortorder><team>9941</team><id>3974130</id><n>234</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>36</elapsed><player2>25986</player2><subtype>shot</subtype><player1>38551</player1><sortorder>1</sortorder><team>10205</team><id>976829</id><n>198</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>22</value><value>64</value></coordinates><elapsed>50</elapsed><player2>74757</player2><subtype>header</subtype><player1>128732</player1><sortorder>1</sortorder><team>10268</team><id>4172603</id><n>245</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>13</elapsed><player1>49836</player1><sortorder>2</sortorder><team>9910</team><id>4770784</id><n>98</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>21</value><value>3</value></coordinates><elapsed>18</elapsed><subtype>shot</subtype><player1>74169</player1><sortorder>3</sortorder><team>9910</team><id>4770857</id><n>118</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>67</value></coordinates><elapsed>24</elapsed><player2>358339</player2><subtype>shot</subtype><player1>190669</player1><sortorder>3</sortorder><team>8306</team><id>4770950</id><n>148</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>9</value></coordinates><elapsed>49</elapsed><player2>174472</player2><subtype>shot</subtype><player1>213486</player1><sortorder>1</sortorder><team>9910</team><id>4771439</id><n>270</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>23</value><value>69</value></coordinates><elapsed>62</elapsed><player1>246177</player1><sortorder>1</sortorder><team>9910</team><id>4771581</id><n>348</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>63</value></coordinates><elapsed>74</elapsed><player2>50622</player2><subtype>shot</subtype><player1>358339</player1><sortorder>2</sortorder><team>8306</team><id>4771725</id><n>506</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>8</elapsed><player2>42873</player2><subtype>shot</subtype><player1>27302</player1><sortorder>1</sortorder><team>9905</team><id>910243</id><n>162</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>15</elapsed><player2>95078</player2><subtype>header</subtype><player1>43210</player1><sortorder>8</sortorder><team>8178</team><id>910267</id><n>167</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>19</elapsed><player2>31199</player2><subtype>shot</subtype><player1>30937</player1><sortorder>0</sortorder><team>8178</team><id>910276</id><n>188</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>30</elapsed><player2>97734</player2><subtype>shot</subtype><player1>95078</player1><sortorder>0</sortorder><team>8178</team><id>910301</id><n>214</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>67</elapsed><player2>36040</player2><subtype>shot</subtype><player1>36000</player1><sortorder>3</sortorder><team>9905</team><id>910889</id><n>206</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>88</elapsed><player2>34681</player2><subtype>shot</subtype><player1>73448</player1><sortorder>3</sortorder><team>8178</team><id>911067</id><n>225</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>22</elapsed><subtype>distance</subtype><player1>30338</player1><sortorder>1</sortorder><team>9879</team><id>887847</id><n>250</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>46</elapsed><player2>30956</player2><subtype>shot</subtype><player1>24741</player1><sortorder>3</sortorder><team>9879</team><id>888163</id><n>273</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>75</elapsed><player2>24741</player2><subtype>volley</subtype><player1>34574</player1><sortorder>2</sortorder><team>9879</team><id>888511</id><n>300</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>25</elapsed><subtype>shot</subtype><player1>32728</player1><sortorder>7</sortorder><team>9850</team><id>2765323</id><n>292</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>62</elapsed><subtype>shot</subtype><player1>24698</player1><sortorder>3</sortorder><team>9850</team><id>2765934</id><n>271</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>65</elapsed><player1>32441</player1><sortorder>1</sortorder><team>8659</team><id>2765973</id><n>303</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>143710</player2><subtype>shot</subtype><player1>46354</player1><sortorder>2</sortorder><team>9850</team><id>2766358</id><n>298</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>50</elapsed><player1>182224</player1><sortorder>0</sortorder><team>8315</team><id>2570765</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>77</elapsed><player1>96619</player1><sortorder>0</sortorder><team>8315</team><id>2570792</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>84</elapsed><player1>181297</player1><sortorder>0</sortorder><team>8315</team><id>2570801</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>5</elapsed><player2>23264</player2><subtype>shot</subtype><player1>24780</player1><sortorder>1</sortorder><team>10252</team><id>406190</id><n>345</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>54</elapsed><subtype>distance</subtype><player1>23354</player1><sortorder>1</sortorder><team>10252</team><id>406376</id><n>413</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>87</elapsed><player2>30818</player2><subtype>shot</subtype><player1>23949</player1><sortorder>3</sortorder><team>8586</team><id>406482</id><n>450</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>879</event_incident_typefk><coordinates><value>37</value><value>56</value></coordinates><elapsed>1</elapsed><subtype>lob</subtype><player1>22313</player1><sortorder>3</sortorder><team>9905</team><id>4156427</id><n>50</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>7</value></coordinates><elapsed>49</elapsed><player2>94685</player2><subtype>header</subtype><player1>71399</player1><sortorder>5</sortorder><team>9789</team><id>4156897</id><n>370</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>31</value><value>6</value></coordinates><elapsed>55</elapsed><player2>185175</player2><subtype>shot</subtype><player1>129944</player1><sortorder>2</sortorder><team>9789</team><id>4156932</id><n>403</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>61</value></coordinates><elapsed>56</elapsed><player2>22313</player2><subtype>shot</subtype><player1>278863</player1><sortorder>1</sortorder><team>9905</team><id>4156946</id><n>460</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>7</value></coordinates><elapsed>71</elapsed><player2>129944</player2><subtype>shot</subtype><player1>150565</player1><sortorder>2</sortorder><team>9789</team><id>4157060</id><n>516</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>17</value><value>4</value></coordinates><elapsed>78</elapsed><subtype>shot</subtype><player1>27365</player1><sortorder>6</sortorder><team>9789</team><id>4157128</id><n>567</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>6</elapsed><player2>30714</player2><subtype>shot</subtype><player1>30682</player1><sortorder>1</sortorder><team>8686</team><id>1833348</id><n>438</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>61</elapsed><player2>68436</player2><subtype>header</subtype><player1>41884</player1><sortorder>4</sortorder><team>9885</team><id>1833838</id><n>466</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><elapsed>63</elapsed><subtype>saved_back_into_play</subtype><player1>30714</player1><sortorder>1</sortorder><team>8686</team><id>1833851</id><n>250</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>35</elapsed><player2>574630</player2><player1>255221</player1><sortorder>0</sortorder><team>10228</team><id>4190458</id><n>9</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>50</elapsed><player2>117541</player2><player1>179239</player1><sortorder>0</sortorder><team>8674</team><id>4190647</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>59</elapsed><player1>485047</player1><sortorder>0</sortorder><team>8674</team><id>4190711</id><n>32</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player2>212819</player2><player1>408780</player1><sortorder>2</sortorder><team>10228</team><id>4190960</id><n>55</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>21</value><value>62</value></coordinates><elapsed>38</elapsed><player2>184138</player2><subtype>header</subtype><player1>30853</player1><sortorder>0</sortorder><team>9906</team><id>5520960</id><n>230</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>11</elapsed><player1>104389</player1><sortorder>0</sortorder><team>10179</team><id>5619021</id><n>6</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>67304</player1><sortorder>0</sortorder><team>10191</team><id>5619264</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><stats><shotoff>1</shotoff></stats><event_incident_typefk>195</event_incident_typefk><elapsed>39</elapsed><player1>289732</player1><sortorder>0</sortorder><team>10191</team><id>5619269</id><n>17</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>7</elapsed><player1>38424</player1><sortorder>0</sortorder><team>8371</team><id>911649</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>8</elapsed><player1>23853</player1><sortorder>0</sortorder><team>8371</team><id>911659</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>16</value><value>57</value></coordinates><elapsed>63</elapsed><player2>167008</player2><subtype>distance</subtype><player1>185014</player1><sortorder>3</sortorder><team>8234</team><id>4719248</id><n>572</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>66</value></coordinates><elapsed>26</elapsed><player2>231176</player2><subtype>header</subtype><player1>429988</player1><sortorder>6</sortorder><team>10233</team><id>4964204</id><n>301</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>21</value><value>10</value></coordinates><elapsed>28</elapsed><subtype>shot</subtype><player1>33640</player1><sortorder>4</sortorder><team>9804</team><id>4964225</id><n>284</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>31</value><value>14</value></coordinates><elapsed>34</elapsed><player2>24791</player2><subtype>distance</subtype><player1>244811</player1><sortorder>1</sortorder><team>9804</team><id>4964364</id><n>353</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>62</value></coordinates><elapsed>67</elapsed><player2>26221</player2><subtype>shot</subtype><player1>231176</player1><sortorder>3</sortorder><team>10233</team><id>4965086</id><n>554</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>20</value><value>2</value></coordinates><elapsed>89</elapsed><player1>110378</player1><sortorder>6</sortorder><team>10233</team><id>4965479</id><n>672</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>4</elapsed_plus><event_incident_typefk>406</event_incident_typefk><coordinates><value>22</value><value>62</value></coordinates><elapsed>90</elapsed><player2>101422</player2><subtype>header</subtype><player1>429988</player1><sortorder>8</sortorder><team>10233</team><id>4965567</id><n>697</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>28</elapsed><player1>46509</player1><sortorder>0</sortorder><team>8633</team><id>3181922</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player1>46384</player1><sortorder>0</sortorder><team>10267</team><id>3181923</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>40</elapsed><player1>30893</player1><sortorder>0</sortorder><team>8633</team><id>3181928</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>26403</player1><sortorder>0</sortorder><team>10267</team><id>3181953</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>82</elapsed><player1>281085</player1><sortorder>0</sortorder><team>8633</team><id>3181974</id><n>28</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>29</elapsed><player2>30827</player2><subtype>shot</subtype><player1>23293</player1><sortorder>11</sortorder><team>8659</team><id>2745690</id><n>252</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>39</elapsed><player2>38254</player2><subtype>header</subtype><player1>30922</player1><sortorder>11</sortorder><team>8528</team><id>2745845</id><n>267</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>50</elapsed><player2>32734</player2><subtype>header</subtype><player1>32441</player1><sortorder>11</sortorder><team>8659</team><id>2746162</id><n>287</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>58</elapsed><player2>41061</player2><subtype>header</subtype><player1>28901</player1><sortorder>11</sortorder><team>8528</team><id>2746309</id><n>316</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>80</elapsed><player2>41061</player2><subtype>shot</subtype><player1>172841</player1><sortorder>11</sortorder><team>8528</team><id>2746599</id><n>304</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>2</elapsed><player2>33991</player2><subtype>header</subtype><player1>75310</player1><sortorder>1</sortorder><team>8302</team><id>1626983</id><n>264</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>26</elapsed><player2>101422</player2><subtype>shot</subtype><player1>75310</player1><sortorder>2</sortorder><team>8302</team><id>1627053</id><n>289</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>81</elapsed><subtype>direct_freekick</subtype><player1>37436</player1><sortorder>1</sortorder><team>9864</team><id>1627205</id><n>346</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>36</elapsed><player2>33991</player2><subtype>header</subtype><player1>33989</player1><sortorder>0</sortorder><team>8302</team><id>1349314</id><n>375</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>6</event_incident_typefk><elapsed>45</elapsed><subtype>volley</subtype><player1>27430</player1><sortorder>2</sortorder><team>9879</team><id>2614801</id><n>291</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>159</event_incident_typefk><elapsed>56</elapsed><subtype>saved</subtype><player1>33881</player1><sortorder>0</sortorder><team>10194</team><id>2614856</id><n>90</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>4</elapsed><player1>47357</player1><sortorder>0</sortorder><team>9904</team><id>1229985</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>15</elapsed><player1>47357</player1><sortorder>0</sortorder><team>9904</team><id>1230020</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>86</elapsed><player1>38188</player1><sortorder>0</sortorder><team>8722</team><id>1230922</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>56</elapsed><player2>38831</player2><subtype>shot</subtype><player1>23991</player1><sortorder>22</sortorder><team>10003</team><id>1825878</id><n>261</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>159</event_incident_typefk><elapsed>87</elapsed><subtype>saved</subtype><player1>30956</player1><sortorder>1</sortorder><team>9879</team><id>1826491</id><n>185</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>23849</player2><subtype>shot</subtype><player1>38759</player1><sortorder>2</sortorder><team>10003</team><id>1826587</id><n>290</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>51</elapsed><subtype>shot</subtype><player1>32616</player1><sortorder>2</sortorder><team>9850</team><id>2924994</id><n>273</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>61</elapsed><player2>77690</player2><subtype>distance</subtype><player1>215384</player1><sortorder>5</sortorder><team>8668</team><id>2925183</id><n>287</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>65</elapsed><subtype>loose_ball</subtype><player1>77690</player1><sortorder>2</sortorder><team>8668</team><id>2925259</id><n>294</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>71</elapsed><player2>32616</player2><subtype>header</subtype><player1>116750</player1><sortorder>4</sortorder><team>9850</team><id>2925384</id><n>301</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>9</value></coordinates><elapsed>40</elapsed><player2>213704</player2><subtype>shot</subtype><player1>18506</player1><sortorder>1</sortorder><team>8535</team><id>5398394</id><n>307</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>27</value><value>64</value></coordinates><elapsed>87</elapsed><player2>30603</player2><subtype>header</subtype><player1>97789</player1><sortorder>0</sortorder><team>9876</team><id>5399589</id><n>651</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>13</elapsed><player1>34947</player1><sortorder>0</sortorder><team>8655</team><id>467018</id><n>230</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>55</elapsed><player2>27267</player2><subtype>shot</subtype><player1>32570</player1><sortorder>4</sortorder><team>8659</team><id>467819</id><n>288</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>62</elapsed><player2>24664</player2><subtype>distance</subtype><player1>27267</player1><sortorder>1</sortorder><team>8659</team><id>467926</id><n>298</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>89</elapsed><subtype>distance</subtype><player1>38711</player1><sortorder>2</sortorder><team>8655</team><id>468356</id><n>322</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>24</elapsed><player2>41475</player2><subtype>header</subtype><player1>24792</player1><sortorder>2</sortorder><team>9857</team><id>2099456</id><n>266</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>37</elapsed><subtype>loose_ball</subtype><player1>190872</player1><sortorder>1</sortorder><team>9857</team><id>2099542</id><n>277</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>59</elapsed><player2>41760</player2><subtype>header</subtype><player1>30991</player1><sortorder>7</sortorder><team>10233</team><id>2099845</id><n>301</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>67</elapsed><player2>41475</player2><subtype>shot</subtype><player1>41930</player1><sortorder>3</sortorder><team>9857</team><id>2099905</id><n>314</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>77</elapsed><player2>30991</player2><subtype>shot</subtype><player1>50449</player1><sortorder>5</sortorder><team>10233</team><id>2100006</id><n>332</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>16</value><value>8</value></coordinates><elapsed>4</elapsed><player2>127460</player2><subtype>shot</subtype><player1>166648</player1><sortorder>4</sortorder><team>8564</team><id>5191119</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>7</value></coordinates><elapsed>88</elapsed><player2>72518</player2><subtype>shot</subtype><player1>27335</player1><sortorder>3</sortorder><team>8564</team><id>5191677</id><n>486</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>16</elapsed><player2>30367</player2><subtype>volley</subtype><player1>24741</player1><sortorder>3</sortorder><team>10172</team><id>1915771</id><n>228</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>46</elapsed><player2>23291</player2><subtype>shot</subtype><player1>23538</player1><sortorder>3</sortorder><team>8602</team><id>1916338</id><n>276</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>71</elapsed><player2>34433</player2><subtype>shot</subtype><player1>23291</player1><sortorder>3</sortorder><team>8602</team><id>1916726</id><n>282</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>26</value><value>7</value></coordinates><elapsed>56</elapsed><player2>25773</player2><subtype>header</subtype><player1>37482</player1><sortorder>4</sortorder><team>8634</team><id>5452905</id><n>299</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>167</event_incident_typefk><coordinates><value>21</value><value>64</value></coordinates><elapsed>63</elapsed><subtype>bicycle_kick</subtype><player1>26166</player1><sortorder>3</sortorder><team>8633</team><id>5453019</id><n>318</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>31</value><value>67</value></coordinates><elapsed>85</elapsed><player2>31921</player2><subtype>shot</subtype><player1>30893</player1><sortorder>3</sortorder><team>8633</team><id>5453245</id><n>406</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>45</elapsed><player1>39996</player1><sortorder>0</sortorder><team>8583</team><id>1340973</id><n>21</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>46</elapsed><player1>26376</player1><sortorder>0</sortorder><team>8583</team><id>1341023</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>5</elapsed><player1>102612</player1><sortorder>0</sortorder><team>8394</team><id>2616340</id><n>27</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>32</elapsed><player1>40958</player1><sortorder>0</sortorder><team>8394</team><id>2616485</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>36</elapsed><player1>39122</player1><sortorder>0</sortorder><team>10267</team><id>2616486</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>69</elapsed><player1>39122</player1><sortorder>0</sortorder><team>10267</team><id>2616695</id><n>34</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>14</elapsed><player2>27149</player2><player1>29255</player1><sortorder>0</sortorder><team>9776</team><id>3370620</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>21</elapsed><player2>36518</player2><player1>171548</player1><sortorder>0</sortorder><team>9776</team><id>3370685</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player2>208230</player2><player1>94666</player1><sortorder>0</sortorder><team>9776</team><id>3371115</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>11</elapsed><player1>26392</player1><sortorder>0</sortorder><team>9847</team><id>2383329</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>33</elapsed><player1>26392</player1><sortorder>0</sortorder><team>9847</team><id>2383472</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>52</elapsed><player2>189192</player2><player1>80500</player1><sortorder>0</sortorder><team>9865</team><id>3445636</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>60</elapsed><player2>215927</player2><player1>128298</player1><sortorder>0</sortorder><team>8603</team><id>3445655</id><n>37</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>70</elapsed><player2>128298</player2><player1>102879</player1><sortorder>0</sortorder><team>8603</team><id>3445688</id><n>36</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>77</elapsed><player2>362855</player2><player1>189192</player1><sortorder>0</sortorder><team>9865</team><id>3445709</id><n>43</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player2>11555</player2><player1>362855</player1><sortorder>0</sortorder><team>9865</team><id>3445754</id><n>39</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><event_incident_typefk>72</event_incident_typefk><elapsed>5</elapsed><del>1</del><sortorder>0</sortorder><n>4</n><type>goal</type><id>3974922</id></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>8</elapsed><player2>277460</player2><player1>298448</player1><sortorder>0</sortorder><team>8593</team><id>3974930</id><n>6</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>85</elapsed><player2>259375</player2><player1>110161</player1><sortorder>0</sortorder><team>10217</team><id>3975128</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>3</elapsed><subtype>loose_ball</subtype><player1>33992</player1><sortorder>5</sortorder><team>8302</team><id>521166</id><n>248</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>18</elapsed><player2>32765</player2><subtype>header</subtype><player1>30655</player1><sortorder>6</sortorder><team>8633</team><id>521227</id><n>262</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>21</elapsed><player2>33991</player2><subtype>header</subtype><player1>31014</player1><sortorder>6</sortorder><team>8302</team><id>521232</id><n>267</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>38</elapsed><subtype>loose_ball</subtype><player1>33989</player1><sortorder>4</sortorder><team>8302</team><id>521290</id><n>286</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>66</elapsed><subtype>distance</subtype><player1>25759</player1><sortorder>5</sortorder><team>8633</team><id>521464</id><n>321</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>68</elapsed><player2>32765</player2><subtype>header</subtype><player1>18814</player1><sortorder>6</sortorder><team>8633</team><id>521469</id><n>325</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>85</elapsed><player2>33989</player2><subtype>header</subtype><player1>30443</player1><sortorder>1</sortorder><team>8302</team><id>521513</id><n>350</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><elapsed>12</elapsed><subtype>header</subtype><player1>30747</player1><sortorder>3</sortorder><team>8686</team><id>683654</id><n>264</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>15</elapsed><subtype>shot</subtype><player1>42035</player1><sortorder>5</sortorder><team>8530</team><id>683671</id><n>274</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>17</elapsed><subtype>shot</subtype><player1>38717</player1><sortorder>2</sortorder><team>8686</team><id>683676</id><n>263</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>288</event_incident_typefk><elapsed>31</elapsed><subtype>deflected</subtype><player1>30747</player1><sortorder>2</sortorder><team>8686</team><id>683734</id><n>279</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>47</elapsed><subtype>direct_freekick</subtype><player1>39706</player1><sortorder>0</sortorder><team>8530</team><id>683817</id><n>300</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>72</elapsed><subtype>shot</subtype><player1>39271</player1><sortorder>8</sortorder><team>8530</team><id>683937</id><n>347</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>44</event_incident_typefk><elapsed>90</elapsed><subtype>header</subtype><player1>27693</player1><sortorder>0</sortorder><team>8686</team><id>684036</id><n>375</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>11</elapsed><player1>38398</player1><sortorder>0</sortorder><team>9788</team><id>3094270</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>15</elapsed><player1>38647</player1><sortorder>0</sortorder><team>9810</team><id>3094329</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>18</elapsed><player1>33579</player1><sortorder>0</sortorder><team>9788</team><id>3094353</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>61</elapsed><player1>192625</player1><sortorder>0</sortorder><team>9788</team><id>3095003</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>66</elapsed><player1>25819</player1><sortorder>0</sortorder><team>9788</team><id>3095032</id><n>32</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>889</event_incident_typefk><coordinates><value>26</value><value>68</value></coordinates><elapsed>10</elapsed><player2>37194</player2><subtype>backheel</subtype><player1>96643</player1><sortorder>3</sortorder><team>10194</team><id>5037144</id><n>601</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>17</elapsed><player1>35997</player1><sortorder>0</sortorder><team>10189</team><id>494978</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>22</elapsed><player1>26437</player1><sortorder>0</sortorder><team>10189</team><id>495001</id><n>22</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>30</elapsed><player1>31936</player1><sortorder>0</sortorder><team>9788</team><id>495108</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>35997</player1><sortorder>0</sortorder><team>10189</team><id>495286</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>10</elapsed><player1>209372</player1><sortorder>0</sortorder><team>8640</team><id>4078516</id><n>8</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>52</elapsed><subtype>saved_back_into_play</subtype><player1>39139</player1><sortorder>0</sortorder><team>9851</team><id>4065344</id><n>204</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>31</value><value>8</value></coordinates><elapsed>63</elapsed><player2>74169</player2><subtype>shot</subtype><player1>317062</player1><sortorder>1</sortorder><team>4087</team><id>4065517</id><n>279</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>17</value><value>63</value></coordinates><elapsed>66</elapsed><player2>39139</player2><subtype>volley</subtype><player1>231199</player1><sortorder>4</sortorder><team>9851</team><id>4065580</id><n>467</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>16</elapsed><player2>35327</player2><subtype>shot</subtype><player1>27430</player1><sortorder>4</sortorder><team>10260</team><id>960020</id><n>287</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>19</elapsed><subtype>distance</subtype><player1>10491</player1><sortorder>1</sortorder><team>8668</team><id>960024</id><n>284</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>76</elapsed><player2>36012</player2><subtype>shot</subtype><player1>46810</player1><sortorder>1</sortorder><team>8668</team><id>960316</id><n>365</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>24011</player2><subtype>shot</subtype><player1>109058</player1><sortorder>3</sortorder><team>8668</team><id>960404</id><n>386</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>26</value><value>67</value></coordinates><elapsed>17</elapsed><player2>46241</player2><subtype>tap_in</subtype><player1>161015</player1><sortorder>6</sortorder><team>10233</team><id>4201407</id><n>141</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>15</value><value>6</value></coordinates><elapsed>19</elapsed><subtype>shot</subtype><player1>39295</player1><sortorder>2</sortorder><team>9882</team><id>4201412</id><n>157</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>2</elapsed><player1>46468</player1><sortorder>0</sortorder><team>8576</team><id>2442194</id><n>34</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>11</elapsed><player1>39311</player1><sortorder>0</sortorder><team>8576</team><id>2442235</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>33</elapsed><player1>210451</player1><sortorder>0</sortorder><team>8689</team><id>2442332</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>40</elapsed><player1>78186</player1><sortorder>0</sortorder><team>8576</team><id>2442420</id><n>32</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>78186</player1><sortorder>0</sortorder><team>8576</team><id>2442421</id><n>33</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>46</elapsed><player1>24753</player1><sortorder>0</sortorder><team>8689</team><id>2442535</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player1>24753</player1><sortorder>0</sortorder><team>8689</team><id>2442775</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>187669</player1><sortorder>0</sortorder><team>8689</team><id>2442911</id><n>29</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>5</elapsed><subtype>shot</subtype><player1>23949</player1><sortorder>5</sortorder><team>8472</team><id>1003130</id><n>276</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>11</elapsed><player2>38802</player2><subtype>shot</subtype><player1>23949</player1><sortorder>2</sortorder><team>8472</team><id>1003200</id><n>277</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>60</elapsed><player2>78404</player2><subtype>shot</subtype><player1>31953</player1><sortorder>4</sortorder><team>8658</team><id>1003952</id><n>327</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>88</elapsed><player2>156008</player2><subtype>shot</subtype><player1>24157</player1><sortorder>4</sortorder><team>8472</team><id>1004312</id><n>358</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>11</elapsed><player1>39533</player1><sortorder>0</sortorder><team>9882</team><id>490123</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>15</elapsed><player1>32748</player1><sortorder>0</sortorder><team>9882</team><id>490169</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player1>24456</player1><sortorder>0</sortorder><team>9888</team><id>490764</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>61</elapsed><player1>41667</player1><sortorder>0</sortorder><team>9882</team><id>490828</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>83</elapsed><player1>24456</player1><sortorder>0</sortorder><team>9888</team><id>491083</id><n>31</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>48</elapsed><player2>24773</player2><subtype>shot</subtype><player1>33881</player1><sortorder>5</sortorder><team>10194</team><id>1201478</id><n>284</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>24</elapsed><player2>30635</player2><subtype>shot</subtype><player1>24450</player1><sortorder>0</sortorder><team>8654</team><id>1392683</id><n>217</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>391</event_incident_typefk><elapsed>37</elapsed><player2>24450</player2><subtype>loose_ball</subtype><player1>24635</player1><sortorder>1</sortorder><team>8654</team><id>1393014</id><n>236</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>42</elapsed><subtype>distance</subtype><player1>39109</player1><sortorder>2</sortorder><team>8483</team><id>1393090</id><n>243</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>44</elapsed><player2>24223</player2><subtype>distance</subtype><player1>24450</player1><sortorder>0</sortorder><team>8654</team><id>1393105</id><n>241</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>30</value><value>9</value></coordinates><elapsed>26</elapsed><subtype>shot</subtype><player1>26330</player1><sortorder>3</sortorder><team>9904</team><id>4124905</id><n>139</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><coordinates><value>25</value><value>61</value></coordinates><elapsed>77</elapsed><subtype>loose_ball</subtype><player1>22313</player1><sortorder>3</sortorder><team>9905</team><id>4125518</id><n>438</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>40</elapsed><player1>38821</player1><sortorder>0</sortorder><team>8302</team><id>2562323</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>102572</player1><sortorder>0</sortorder><team>8305</team><id>2562324</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>36</elapsed><player1>19533</player1><sortorder>0</sortorder><team>8634</team><id>3132657</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>37</elapsed><player1>150250</player1><sortorder>0</sortorder><team>8634</team><id>3132658</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>63</elapsed><player1>30613</player1><sortorder>2</sortorder><team>8634</team><id>3132688</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player1>30613</player1><sortorder>0</sortorder><team>8634</team><id>3132713</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>90</elapsed><player1>2983</player1><sortorder>1</sortorder><team>8603</team><id>3132723</id><n>31</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>dg</comment><event_incident_typefk>305</event_incident_typefk><coordinates><value>22</value><value>18</value></coordinates><elapsed>87</elapsed><subtype>deflected</subtype><player1>115067</player1><sortorder>0</sortorder><team>8455</team><id>4153921</id><n>507</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>32</value><value>14</value></coordinates><elapsed>89</elapsed><subtype>distance</subtype><player1>94086</player1><sortorder>4</sortorder><team>8455</team><id>4153977</id><n>561</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>11</elapsed><player1>30714</player1><sortorder>0</sortorder><team>8686</team><id>2460064</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>31</elapsed><player1>40165</player1><sortorder>0</sortorder><team>8686</team><id>2460079</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>70</elapsed><player1>174850</player1><sortorder>0</sortorder><team>8686</team><id>2460107</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player1>154249</player1><sortorder>0</sortorder><team>8686</team><id>2460112</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>84</elapsed><player1>147951</player1><sortorder>0</sortorder><team>8540</team><id>2460115</id><n>28</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>1</elapsed><player1>150644</player1><sortorder>0</sortorder><team>8696</team><id>606302</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>24</elapsed><player1>37449</player1><sortorder>0</sortorder><team>9783</team><id>606484</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>33</elapsed><player1>38567</player1><sortorder>0</sortorder><team>8696</team><id>606589</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>51</elapsed><player1>37446</player1><sortorder>0</sortorder><team>9783</team><id>606875</id><n>35</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>58</elapsed><player1>38573</player1><sortorder>0</sortorder><team>9783</team><id>606901</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>59</elapsed><player1>37446</player1><sortorder>0</sortorder><team>9783</team><id>606902</id><n>32</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>67</elapsed><player1>37441</player1><sortorder>0</sortorder><team>9783</team><id>606945</id><n>34</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player1>166573</player1><sortorder>0</sortorder><team>8696</team><id>607007</id><n>28</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>67</value></coordinates><elapsed>17</elapsed><player2>352833</player2><subtype>shot</subtype><player1>40707</player1><sortorder>2</sortorder><team>9827</team><id>3633713</id><n>224</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>11</elapsed><player1>25496</player1><sortorder>0</sortorder><team>9853</team><id>1536503</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>30</elapsed><player1>129811</player1><sortorder>0</sortorder><team>9829</team><id>1536586</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>52</elapsed><player2>24225</player2><subtype>shot</subtype><player1>23933</player1><sortorder>2</sortorder><team>10261</team><id>1366085</id><n>252</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>4</elapsed_plus><event_incident_typefk>391</event_incident_typefk><elapsed>90</elapsed><player2>36786</player2><subtype>loose_ball</subtype><player1>41980</player1><sortorder>1</sortorder><team>8472</team><id>1366311</id><n>292</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>15</value><value>60</value></coordinates><elapsed>34</elapsed><player2>112477</player2><subtype>shot</subtype><player1>432421</player1><sortorder>2</sortorder><team>8277</team><id>5368796</id><n>248</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>7</value></coordinates><elapsed>59</elapsed><player2>106474</player2><subtype>shot</subtype><player1>259375</player1><sortorder>1</sortorder><team>9803</team><id>5369838</id><n>479</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>65</value></coordinates><elapsed>90</elapsed><player2>157630</player2><subtype>header</subtype><player1>623091</player1><sortorder>7</sortorder><team>8277</team><id>5370603</id><n>673</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>882</event_incident_typefk><coordinates><value>24</value><value>13</value></coordinates><elapsed>75</elapsed><player2>230133</player2><subtype>lob</subtype><player1>215419</player1><sortorder>2</sortorder><team>8464</team><id>5222327</id><n>483</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>16</value><value>9</value></coordinates><elapsed>88</elapsed><subtype>shot</subtype><player1>288349</player1><sortorder>4</sortorder><team>8464</team><id>5222473</id><n>562</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>50047</player1><sortorder>0</sortorder><team>8600</team><id>576613</id><n>14</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>80</event_incident_typefk><elapsed>90</elapsed><subtype>shot</subtype><player1>39225</player1><sortorder>5</sortorder><team>8466</team><id>3443362</id><n>249</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>54</elapsed><player1>231753</player1><sortorder>0</sortorder><team>9857</team><id>2522873</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player1>27599</player1><sortorder>0</sortorder><team>10167</team><id>2522874</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>66</elapsed><player1>195199</player1><sortorder>0</sortorder><team>10167</team><id>2523015</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>12</elapsed><player1>39706</player1><sortorder>0</sortorder><team>8530</team><id>1160833</id><n>21</n><type>goal</type><goal_type>p</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>82</elapsed><player1>74229</player1><sortorder>0</sortorder><team>8530</team><id>1161648</id><n>28</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>96540</player1><sortorder>0</sortorder><team>10167</team><id>1161743</id><n>29</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>8</value></coordinates><elapsed>50</elapsed><player2>49677</player2><subtype>shot</subtype><player1>34304</player1><sortorder>2</sortorder><team>9847</team><id>5551798</id><n>224</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>5</value></coordinates><elapsed>54</elapsed><player2>46509</player2><subtype>shot</subtype><player1>35724</player1><sortorder>1</sortorder><team>9847</team><id>5551823</id><n>244</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>9</value></coordinates><elapsed>78</elapsed><player2>129391</player2><subtype>shot</subtype><player1>35724</player1><sortorder>1</sortorder><team>9847</team><id>5551993</id><n>355</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>9</value></coordinates><elapsed>90</elapsed><player2>190972</player2><subtype>shot</subtype><player1>49677</player1><sortorder>8</sortorder><team>9847</team><id>5552090</id><n>421</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>21</elapsed><player2>30731</player2><subtype>header</subtype><player1>80562</player1><sortorder>2</sortorder><team>8564</team><id>835080</id><n>257</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>35</elapsed><player2>30743</player2><subtype>header</subtype><player1>46554</player1><sortorder>0</sortorder><team>8564</team><id>835218</id><n>279</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>64</elapsed><player1>80562</player1><sortorder>1</sortorder><team>8564</team><id>835815</id><n>313</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>18</value><value>66</value></coordinates><elapsed>26</elapsed><player2>40537</player2><subtype>header</subtype><player1>46884</player1><sortorder>1</sortorder><team>9747</team><id>4168272</id><n>148</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><coordinates><value>21</value><value>58</value></coordinates><elapsed>39</elapsed><subtype>loose_ball</subtype><player1>40537</player1><sortorder>4</sortorder><team>9747</team><id>4168395</id><n>225</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>64</value></coordinates><elapsed>84</elapsed><player2>229759</player2><subtype>header</subtype><player1>95081</player1><sortorder>1</sortorder><team>8177</team><id>4279576</id><n>519</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>9</elapsed><player2>23074</player2><subtype>header</subtype><player1>24452</player1><sortorder>4</sortorder><team>8191</team><id>843302</id><n>235</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>86</elapsed><player2>38807</player2><subtype>header</subtype><player1>34466</player1><sortorder>3</sortorder><team>10252</team><id>844558</id><n>315</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>2</elapsed><subtype>shot</subtype><player1>127130</player1><sortorder>3</sortorder><team>10003</team><id>2992212</id><n>257</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>4</elapsed><subtype>shot</subtype><player1>51553</player1><sortorder>2</sortorder><team>8650</team><id>2992218</id><n>258</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>37</elapsed><subtype>shot</subtype><player1>106228</player1><sortorder>0</sortorder><team>8650</team><id>2992317</id><n>276</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>63</elapsed><player2>127130</player2><subtype>shot</subtype><player1>118528</player1><sortorder>1</sortorder><team>10003</team><id>2992426</id><n>288</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>75</elapsed><player1>27550</player1><sortorder>0</sortorder><team>8722</team><id>718309</id><n>15</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>24</elapsed><subtype>shot</subtype><player1>25462</player1><sortorder>0</sortorder><team>8661</team><id>1086031</id><n>138</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><elapsed>76</elapsed><subtype>volley</subtype><player1>37631</player1><sortorder>0</sortorder><team>8661</team><id>1086259</id><n>117</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>11</elapsed><player2>37545</player2><player1>155066</player1><sortorder>0</sortorder><team>8535</team><id>3326080</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>39</elapsed><player2>155066</player2><player1>41411</player1><sortorder>0</sortorder><team>8535</team><id>3326117</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player2>42651</player2><player1>109121</player1><sortorder>0</sortorder><team>8533</team><id>3326176</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>81</elapsed><player1>37545</player1><sortorder>1</sortorder><team>8535</team><id>3326214</id><n>16</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player2>147951</player2><player1>27326</player1><sortorder>0</sortorder><team>8535</team><id>3326221</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>30</value><value>63</value></coordinates><elapsed>4</elapsed><subtype>shot</subtype><player1>33782</player1><sortorder>3</sortorder><team>8564</team><id>4094508</id><n>31</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>25</value><value>7</value></coordinates><elapsed>47</elapsed><player2>30638</player2><subtype>volley</subtype><player1>73999</player1><sortorder>1</sortorder><team>8543</team><id>4095028</id><n>266</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>32</value><value>4</value></coordinates><elapsed>51</elapsed><subtype>shot</subtype><player1>30638</player1><sortorder>3</sortorder><team>8543</team><id>4095041</id><n>292</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>7</value></coordinates><elapsed>81</elapsed><player2>106292</player2><subtype>shot</subtype><player1>73999</player1><sortorder>2</sortorder><team>8543</team><id>4095217</id><n>432</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>22</value><value>10</value></coordinates><elapsed>20</elapsed><subtype>shot</subtype><player1>26221</player1><sortorder>1</sortorder><team>9830</team><id>4359553</id><n>85</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>77</elapsed><subtype>shot</subtype><player1>46509</player1><sortorder>0</sortorder><team>8633</team><id>1339614</id><n>358</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><elapsed>4</elapsed><subtype>volley</subtype><player1>163200</player1><sortorder>2</sortorder><team>8667</team><id>3182249</id><n>246</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>288</event_incident_typefk><elapsed>13</elapsed><subtype>deflected</subtype><player1>131583</player1><sortorder>4</sortorder><team>8667</team><id>3182269</id><n>249</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>19</elapsed><player2>30829</player2><subtype>header</subtype><player1>165823</player1><sortorder>3</sortorder><team>10260</team><id>3182282</id><n>251</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>26</elapsed><subtype>distance</subtype><player1>30829</player1><sortorder>0</sortorder><team>10260</team><id>3182295</id><n>265</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>66</elapsed><player1>163200</player1><sortorder>3</sortorder><team>8667</team><id>3182403</id><n>314</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>9</value></coordinates><elapsed>17</elapsed><player2>395154</player2><subtype>shot</subtype><player1>574654</player1><sortorder>2</sortorder><team>9869</team><id>4840114</id><n>82</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>20</value><value>66</value></coordinates><elapsed>47</elapsed><player2>96652</player2><subtype>header</subtype><player1>37824</player1><sortorder>2</sortorder><team>8603</team><id>4840400</id><n>228</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>58</value></coordinates><elapsed>57</elapsed><player2>40648</player2><subtype>shot</subtype><player1>96652</player1><sortorder>6</sortorder><team>8603</team><id>4840482</id><n>454</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>46</elapsed><player2>30830</player2><subtype>shot</subtype><player1>33074</player1><sortorder>1</sortorder><team>8586</team><id>1003769</id><n>250</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>64</elapsed><player1>24773</player1><sortorder>0</sortorder><team>10194</team><id>1004017</id><n>274</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>77</elapsed><player2>40006</player2><subtype>shot</subtype><player1>38820</player1><sortorder>1</sortorder><team>8586</team><id>1004190</id><n>286</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>49</elapsed><player2>30731</player2><subtype>shot</subtype><player1>35724</player1><sortorder>2</sortorder><team>8564</team><id>1187421</id><n>307</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>26</value><value>8</value></coordinates><elapsed>19</elapsed><player2>243164</player2><subtype>header</subtype><player1>36784</player1><sortorder>2</sortorder><team>10189</team><id>3846415</id><n>332</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>18</value><value>12</value></coordinates><elapsed>65</elapsed><subtype>shot</subtype><player1>243164</player1><sortorder>3</sortorder><team>10189</team><id>3846938</id><n>385</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player1>131991</player1><sortorder>0</sortorder><team>9837</team><id>3090009</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>37</elapsed><player1>112935</player1><sortorder>0</sortorder><team>9837</team><id>3090061</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player1>254308</player1><sortorder>0</sortorder><team>8592</team><id>3090384</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>86</elapsed><player1>186831</player1><sortorder>0</sortorder><team>8592</team><id>3090663</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>94321</player1><sortorder>0</sortorder><team>9837</team><id>3090733</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>29</elapsed><player1>41168</player1><sortorder>0</sortorder><team>8370</team><id>3209074</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>26</value><value>3</value></coordinates><elapsed>8</elapsed><subtype>shot</subtype><player1>291425</player1><sortorder>2</sortorder><team>9905</team><id>5508555</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>19</value><value>5</value></coordinates><elapsed>49</elapsed><player2>94915</player2><subtype>header</subtype><player1>147726</player1><sortorder>1</sortorder><team>9905</team><id>5509536</id><n>194</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>16</value><value>58</value></coordinates><elapsed>64</elapsed><player2>36934</player2><subtype>distance</subtype><player1>127945</player1><sortorder>5</sortorder><team>8722</team><id>5509837</id><n>305</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>22</value><value>67</value></coordinates><elapsed>74</elapsed><player2>450976</player2><subtype>volley</subtype><player1>387727</player1><sortorder>4</sortorder><team>8722</team><id>5509914</id><n>338</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>17</value><value>59</value></coordinates><elapsed>83</elapsed><player2>36086</player2><subtype>volley</subtype><player1>71605</player1><sortorder>1</sortorder><team>8722</team><id>5509988</id><n>378</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>26</value><value>3</value></coordinates><elapsed>21</elapsed><player1>420568</player1><sortorder>3</sortorder><team>8370</team><id>4979483</id><n>121</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>20</elapsed><player1>243164</player1><sortorder>0</sortorder><team>10189</team><id>2776877</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>54</elapsed><player1>240837</player1><sortorder>0</sortorder><team>8358</team><id>2777012</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>58</elapsed><player1>36771</player1><sortorder>0</sortorder><team>8358</team><id>2777036</id><n>23</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>29</elapsed><player2>40659</player2><player1>93466</player1><sortorder>0</sortorder><team>10249</team><id>3239269</id><n>32</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>47</elapsed><player1>199834</player1><sortorder>0</sortorder><team>10249</team><id>3239318</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player2>128456</player2><player1>199834</player1><sortorder>0</sortorder><team>10249</team><id>3239329</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>58</elapsed><player1>131991</player1><sortorder>0</sortorder><team>9837</team><id>3239331</id><n>31</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>65</elapsed><player1>128456</player1><sortorder>0</sortorder><team>10249</team><id>3239347</id><n>33</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>69</elapsed><player2>199834</player2><player1>46241</player1><sortorder>0</sortorder><team>10249</team><id>3239356</id><n>29</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>27</value><value>16</value></coordinates><elapsed>65</elapsed><subtype>direct_freekick</subtype><player1>30618</player1><sortorder>0</sortorder><team>8650</team><id>3779337</id><n>269</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>39</event_incident_typefk><coordinates><value>29</value><value>54</value></coordinates><elapsed>90</elapsed><subtype>distance</subtype><player1>23268</player1><sortorder>9</sortorder><team>8668</team><id>3779663</id><n>286</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>50</elapsed><subtype>shot</subtype><player1>31953</player1><sortorder>3</sortorder><team>8658</team><id>895223</id><n>225</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>63</elapsed><player1>116772</player1><sortorder>0</sortorder><team>9823</team><id>3025929</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>70</elapsed><player2>24753</player2><subtype>distance</subtype><player1>38491</player1><sortorder>2</sortorder><team>8549</team><id>383158</id><n>346</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>85</elapsed><player1>24167</player1><sortorder>0</sortorder><team>8549</team><id>383417</id><n>364</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>5</elapsed_plus><event_incident_typefk>407</event_incident_typefk><elapsed>90</elapsed><player2>24635</player2><subtype>distance</subtype><player1>30618</player1><sortorder>0</sortorder><team>8650</team><id>383558</id><n>374</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>npm</comment><event_incident_typefk>22</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>64</elapsed><subtype>missed</subtype><player1>132844</player1><sortorder>0</sortorder><team>8358</team><id>3686958</id><n>129</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>13</elapsed><player2>37450</player2><player1>30646</player1><sortorder>0</sortorder><team>9864</team><id>3296652</id><n>15</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>30</elapsed><player2>111975</player2><player1>40523</player1><sortorder>0</sortorder><team>10281</team><id>3296839</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>npm</comment><event_incident_typefk>159</event_incident_typefk><elapsed>12</elapsed><subtype>saved</subtype><player1>30893</player1><sortorder>4</sortorder><team>8633</team><id>2111156</id><n>26</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>16</elapsed><player2>36378</player2><subtype>shot</subtype><player1>25759</player1><sortorder>0</sortorder><team>8633</team><id>2111196</id><n>176</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>20</elapsed><player2>30893</player2><subtype>shot</subtype><player1>36378</player1><sortorder>1</sortorder><team>8633</team><id>2111251</id><n>190</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>50</elapsed><player2>30889</player2><subtype>header</subtype><player1>30893</player1><sortorder>4</sortorder><team>8633</team><id>2111514</id><n>222</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>47</elapsed><player2>33816</player2><subtype>shot</subtype><player1>31725</player1><sortorder>1</sortorder><team>8535</team><id>564481</id><n>242</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>49</elapsed><subtype>distance</subtype><player1>41350</player1><sortorder>0</sortorder><team>9875</team><id>564509</id><n>241</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>79</elapsed><subtype>shot</subtype><player1>24507</player1><sortorder>2</sortorder><team>8535</team><id>564937</id><n>272</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>28</elapsed><player1>93484</player1><sortorder>0</sortorder><team>9748</team><id>1850166</id><n>17</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>18</elapsed><player2>30840</player2><subtype>header</subtype><player1>30670</player1><sortorder>1</sortorder><team>8633</team><id>424614</id><n>233</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>53</elapsed><player1>38578</player1><sortorder>3</sortorder><team>8603</team><id>424808</id><n>133</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>54</elapsed><subtype>loose_ball</subtype><player1>38578</player1><sortorder>0</sortorder><team>8603</team><id>424810</id><n>287</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>30834</player2><subtype>shot</subtype><player1>34602</player1><sortorder>2</sortorder><team>8633</team><id>424971</id><n>329</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>10</elapsed><player1>34035</player1><sortorder>0</sortorder><team>9931</team><id>5581515</id><n>5</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player1>121080</player1><sortorder>0</sortorder><team>10243</team><id>5581542</id><n>8</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>54</elapsed><player1>25794</player1><sortorder>0</sortorder><team>9931</team><id>5581911</id><n>13</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>59</elapsed><player1>198082</player1><sortorder>0</sortorder><team>10243</team><id>5582025</id><n>14</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><elapsed>88</elapsed><player1>527103</player1><sortorder>0</sortorder><team>9931</team><id>5582680</id><n>29</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>8</elapsed><player1>5610</player1><sortorder>0</sortorder><team>8689</team><id>3166866</id><n>18</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>87</elapsed><player1>5610</player1><sortorder>0</sortorder><team>8689</team><id>3166963</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>20</elapsed><player1>47357</player1><sortorder>0</sortorder><team>9904</team><id>1156498</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>50</elapsed><player1>29145</player1><sortorder>0</sortorder><team>9904</team><id>1157338</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>73448</player1><sortorder>0</sortorder><team>8178</team><id>1157550</id><n>32</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>27556</player1><sortorder>0</sortorder><team>8178</team><id>1157921</id><n>33</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>36</elapsed><player1>24225</player1><sortorder>1</sortorder><team>10261</team><id>1540448</id><n>206</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>43</elapsed><player2>24205</player2><subtype>header</subtype><player1>24228</player1><sortorder>2</sortorder><team>10261</team><id>1540597</id><n>207</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>288</event_incident_typefk><elapsed>45</elapsed><subtype>deflected</subtype><player1>33049</player1><sortorder>1</sortorder><team>8658</team><id>1540630</id><n>228</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>43</elapsed><player1>115160</player1><sortorder>0</sortorder><team>9874</team><id>1406806</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>38098</player1><sortorder>0</sortorder><team>8592</team><id>1406845</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>70</elapsed><player1>38098</player1><sortorder>0</sortorder><team>8592</team><id>1407181</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>17</elapsed><player1>33028</player1><sortorder>0</sortorder><team>8315</team><id>5147355</id><n>105</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>30</value><value>64</value></coordinates><elapsed>63</elapsed><subtype>shot</subtype><player1>213916</player1><sortorder>2</sortorder><team>8306</team><id>5147667</id><n>317</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>31</value><value>7</value></coordinates><elapsed>66</elapsed><subtype>shot</subtype><player1>604105</player1><sortorder>5</sortorder><team>8315</team><id>5147682</id><n>350</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>25</value><value>58</value></coordinates><elapsed>81</elapsed><subtype>distance</subtype><player1>484906</player1><sortorder>8</sortorder><team>8306</team><id>5147762</id><n>421</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player2>46509</player2><player1>30893</player1><sortorder>0</sortorder><team>8633</team><id>3424288</id><n>15</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>52</elapsed><player2>191315</player2><player1>30893</player1><sortorder>0</sortorder><team>8633</team><id>3424460</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>60</elapsed><player2>46509</player2><player1>30962</player1><sortorder>0</sortorder><team>8633</team><id>3424479</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>83</elapsed><player2>191315</player2><player1>282674</player1><sortorder>0</sortorder><team>8633</team><id>3424538</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>26</value><value>62</value></coordinates><elapsed>20</elapsed><player2>199833</player2><subtype>header</subtype><player1>27657</player1><sortorder>4</sortorder><team>7943</team><id>3870401</id><n>80</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>66</value></coordinates><elapsed>23</elapsed><player2>364520</player2><subtype>shot</subtype><player1>73024</player1><sortorder>4</sortorder><team>7943</team><id>3870461</id><n>373</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>20</value><value>53</value></coordinates><elapsed>52</elapsed><subtype>distance</subtype><player1>199833</player1><sortorder>4</sortorder><team>7943</team><id>3871141</id><n>218</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>26</value><value>6</value></coordinates><elapsed>78</elapsed><subtype>shot</subtype><player1>32748</player1><sortorder>4</sortorder><team>10167</team><id>3871422</id><n>372</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>27</value><value>17</value></coordinates><elapsed>39</elapsed><player2>41658</player2><subtype>distance</subtype><player1>25759</player1><sortorder>0</sortorder><team>9875</team><id>4964477</id><n>295</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>14</value><value>8</value></coordinates><elapsed>80</elapsed><player2>188652</player2><subtype>shot</subtype><player1>46104</player1><sortorder>1</sortorder><team>9875</team><id>4965306</id><n>467</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>8</elapsed><player1>72735</player1><sortorder>0</sortorder><team>9904</team><id>2591687</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>14</elapsed><player1>96593</player1><sortorder>0</sortorder><team>9875</team><id>419609</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>75</elapsed><player1>24624</player1><sortorder>0</sortorder><team>9875</team><id>420471</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>83</elapsed><player1>32747</player1><sortorder>0</sortorder><team>8540</team><id>420573</id><n>24</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>rp</comment><event_incident_typefk>485</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>8</elapsed><player1>161660</player1><sortorder>0</sortorder><team>9804</team><id>5183061</id><n>69</n><type>goal</type><goal_type>rp</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>9</elapsed><player1>161660</player1><sortorder>0</sortorder><team>9804</team><id>5183067</id><n>76</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>63</value></coordinates><elapsed>33</elapsed><player2>114664</player2><subtype>header</subtype><player1>33706</player1><sortorder>2</sortorder><team>9891</team><id>5183279</id><n>240</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>649</event_incident_typefk><coordinates><value>27</value><value>3</value></coordinates><elapsed>37</elapsed><subtype>tap_in</subtype><player1>309726</player1><sortorder>3</sortorder><team>9804</team><id>5183327</id><n>269</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>31</value><value>8</value></coordinates><elapsed>41</elapsed><player2>253088</player2><subtype>shot</subtype><player1>309726</player1><sortorder>6</sortorder><team>9804</team><id>5183376</id><n>325</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>25</value><value>68</value></coordinates><elapsed>74</elapsed><player1>210704</player1><sortorder>3</sortorder><team>9804</team><id>5183767</id><n>534</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>8</value></coordinates><elapsed>82</elapsed><player2>309726</player2><subtype>shot</subtype><player1>362113</player1><sortorder>2</sortorder><team>9804</team><id>5183856</id><n>573</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>27</elapsed><player1>278343</player1><sortorder>2</sortorder><team>8197</team><id>5117747</id><n>293</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>30</value><value>5</value></coordinates><elapsed>32</elapsed><subtype>shot</subtype><player1>181276</player1><sortorder>3</sortorder><team>8668</team><id>5117820</id><n>349</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>65</elapsed><player1>278343</player1><sortorder>2</sortorder><team>8197</team><id>5119117</id><n>738</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>62</value></coordinates><elapsed>69</elapsed><player2>286119</player2><subtype>shot</subtype><player1>20694</player1><sortorder>2</sortorder><team>8197</team><id>5119205</id><n>772</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>14</value><value>7</value></coordinates><elapsed>89</elapsed><player2>215384</player2><subtype>shot</subtype><player1>26151</player1><sortorder>3</sortorder><team>8668</team><id>5119555</id><n>904</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>33</elapsed><player1>101501</player1><sortorder>0</sortorder><team>10189</team><id>2318993</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>46</elapsed><player1>27483</player1><sortorder>0</sortorder><team>10189</team><id>2319248</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>72</elapsed><player1>36784</player1><sortorder>0</sortorder><team>10189</team><id>2319355</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player1>38182</player1><sortorder>0</sortorder><team>8406</team><id>2319416</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>7</value></coordinates><elapsed>90</elapsed><player2>213729</player2><subtype>shot</subtype><player1>179083</player1><sortorder>12</sortorder><team>8306</team><id>5106932</id><n>379</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>20</elapsed><player1>37506</player1><sortorder>0</sortorder><team>10267</team><id>2457207</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>31718</player1><sortorder>0</sortorder><team>10267</team><id>2457222</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>75</elapsed><player1>113599</player1><sortorder>0</sortorder><team>8689</team><id>2594042</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>82</elapsed><player1>237631</player1><sortorder>0</sortorder><team>9831</team><id>2594056</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>69</elapsed><player2>27303</player2><subtype>header</subtype><player1>26437</player1><sortorder>1</sortorder><team>10189</team><id>843951</id><n>184</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>80</event_incident_typefk><elapsed>90</elapsed><subtype>shot</subtype><player1>114650</player1><sortorder>0</sortorder><team>10189</team><id>844208</id><n>199</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>13</elapsed><player2>109638</player2><subtype>shot</subtype><player1>35905</player1><sortorder>3</sortorder><team>9850</team><id>3164835</id><n>277</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>89</elapsed><player2>201664</player2><subtype>shot</subtype><player1>109638</player1><sortorder>4</sortorder><team>9850</team><id>3166037</id><n>377</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>37</elapsed><player2>34177</player2><subtype>shot</subtype><player1>23792</player1><sortorder>1</sortorder><team>8548</team><id>673045</id><n>265</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>83</elapsed><subtype>shot</subtype><player1>26437</player1><sortorder>0</sortorder><team>10189</team><id>1732795</id><n>370</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>22</elapsed><player1>75606</player1><sortorder>0</sortorder><team>9868</team><id>1078717</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>66</elapsed><player1>164676</player1><sortorder>0</sortorder><team>8394</team><id>1079277</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>68</elapsed><player1>102911</player1><sortorder>0</sortorder><team>9868</team><id>1079283</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>74</elapsed><player1>102912</player1><sortorder>0</sortorder><team>9868</team><id>1079335</id><n>32</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>76</elapsed><player1>33635</player1><sortorder>0</sortorder><team>8394</team><id>1079351</id><n>33</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>12</elapsed><player1>39426</player1><sortorder>0</sortorder><team>9857</team><id>1038410</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player1>24792</player1><sortorder>0</sortorder><team>9857</team><id>1038468</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>25594</player1><sortorder>0</sortorder><team>8543</team><id>1038835</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>63</elapsed><player1>35244</player1><sortorder>0</sortorder><team>8543</team><id>1039340</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>68</elapsed><player1>25598</player1><sortorder>0</sortorder><team>8543</team><id>1039407</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>15</value><value>64</value></coordinates><elapsed>8</elapsed><player2>213711</player2><subtype>shot</subtype><player1>291425</player1><sortorder>2</sortorder><team>7878</team><id>4259552</id><n>56</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>4</value></coordinates><elapsed>65</elapsed><player2>111975</player2><subtype>shot</subtype><player1>41168</player1><sortorder>2</sortorder><team>8370</team><id>4260491</id><n>326</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>5</value></coordinates><elapsed>76</elapsed><player2>163205</player2><subtype>shot</subtype><player1>41168</player1><sortorder>1</sortorder><team>8370</team><id>4260663</id><n>384</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>4</elapsed_plus><event_incident_typefk>80</event_incident_typefk><coordinates><value>21</value><value>8</value></coordinates><elapsed>90</elapsed><subtype>shot</subtype><player1>482331</player1><sortorder>13</sortorder><team>8370</team><id>4260924</id><n>477</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>83</elapsed><player2>16351</player2><subtype>shot</subtype><player1>38817</player1><sortorder>122</sortorder><team>8456</team><id>2707332</id><n>278</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>53</elapsed><player1>289472</player1><sortorder>0</sortorder><team>9956</team><id>5315787</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>451983</player1><sortorder>0</sortorder><team>9956</team><id>5315901</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>80</elapsed><player1>451983</player1><sortorder>0</sortorder><team>9956</team><id>5316191</id><n>43</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>37</elapsed><player1>31045</player1><sortorder>0</sortorder><team>9783</team><id>482471</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>18</value><value>5</value></coordinates><elapsed>3</elapsed><subtype>shot</subtype><player1>265924</player1><sortorder>1</sortorder><team>7943</team><id>4841630</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>43</value><value>61</value></coordinates><elapsed>24</elapsed><player2>166509</player2><subtype>distance</subtype><player1>39232</player1><sortorder>3</sortorder><team>8533</team><id>4842001</id><n>551</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>65</elapsed><player2>27155</player2><subtype>shot</subtype><player1>30496</player1><sortorder>2</sortorder><team>9790</team><id>1372316</id><n>302</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>80</elapsed><player2>31013</player2><subtype>shot</subtype><player1>36378</player1><sortorder>3</sortorder><team>9825</team><id>3168538</id><n>265</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>84</elapsed><player2>193859</player2><subtype>volley</subtype><player1>251925</player1><sortorder>1</sortorder><team>8668</team><id>3168548</id><n>266</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>31</elapsed><player1>36084</player1><sortorder>0</sortorder><team>8226</team><id>381858</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player1>35997</player1><sortorder>0</sortorder><team>8406</team><id>2937746</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>36</elapsed><player1>27425</player1><sortorder>0</sortorder><team>8406</team><id>2937863</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>42</elapsed><player1>36084</player1><sortorder>0</sortorder><team>10269</team><id>2937897</id><n>27</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>41</elapsed><player1>27671</player1><sortorder>0</sortorder><team>8524</team><id>3074665</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>53</elapsed><player1>281999</player1><sortorder>0</sortorder><team>8543</team><id>3074709</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>84</elapsed><player1>35421</player1><sortorder>0</sortorder><team>8524</team><id>3074819</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><coordinates><value>25</value><value>3</value></coordinates><elapsed>33</elapsed><subtype>header</subtype><player1>287337</player1><sortorder>3</sortorder><team>9876</team><id>4842114</id><n>206</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>63</elapsed><player1>38393</player1><sortorder>1</sortorder><team>8543</team><id>4842932</id><n>377</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>20</value><value>55</value></coordinates><elapsed>86</elapsed><player2>38393</player2><subtype>distance</subtype><player1>73999</player1><sortorder>0</sortorder><team>8543</team><id>4843383</id><n>504</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>25</value><value>3</value></coordinates><elapsed>13</elapsed><player2>212377</player2><subtype>volley</subtype><player1>196366</player1><sortorder>1</sortorder><team>8722</team><id>3988290</id><n>45</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>649</event_incident_typefk><coordinates><value>25</value><value>67</value></coordinates><elapsed>53</elapsed><subtype>tap_in</subtype><player1>140965</player1><sortorder>4</sortorder><team>8406</team><id>3989218</id><n>206</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><coordinates><value>21</value><value>57</value></coordinates><elapsed>90</elapsed><subtype>volley</subtype><player1>147735</player1><sortorder>4</sortorder><team>8406</team><id>3990015</id><n>329</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>41</elapsed><player1>47373</player1><sortorder>0</sortorder><team>8535</team><id>3011257</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>69</elapsed><player1>38699</player1><sortorder>0</sortorder><team>8535</team><id>3011519</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>17</elapsed><player1>150119</player1><sortorder>0</sortorder><team>8277</team><id>3996342</id><n>3</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>33</elapsed><player2>193803</player2><player1>210956</player1><sortorder>0</sortorder><team>8611</team><id>3996554</id><n>11</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player2>150119</player2><player1>109649</player1><sortorder>0</sortorder><team>8277</team><id>3996573</id><n>10</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>50</elapsed><player1>360559</player1><sortorder>0</sortorder><team>8611</team><id>3997081</id><n>18</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>8</elapsed><player2>37436</player2><subtype>header</subtype><player1>41707</player1><sortorder>0</sortorder><team>9864</team><id>1906518</id><n>200</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>15</elapsed><player2>151063</player2><subtype>shot</subtype><player1>202553</player1><sortorder>4</sortorder><team>8302</team><id>1906552</id><n>202</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>19</elapsed><player2>51545</player2><subtype>shot</subtype><player1>56819</player1><sortorder>2</sortorder><team>9864</team><id>1906561</id><n>204</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player1>30981</player1><sortorder>0</sortorder><team>8634</team><id>2516564</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>25</elapsed><player1>30981</player1><sortorder>0</sortorder><team>8634</team><id>2516566</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>39</elapsed><player1>96652</player1><sortorder>0</sortorder><team>8603</team><id>2516572</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>889</event_incident_typefk><coordinates><value>20</value><value>6</value></coordinates><elapsed>15</elapsed><player2>24656</player2><subtype>backheel</subtype><player1>101969</player1><sortorder>2</sortorder><team>8667</team><id>4225082</id><n>97</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>21</value><value>68</value></coordinates><elapsed>77</elapsed><player2>180330</player2><subtype>header</subtype><player1>109058</player1><sortorder>3</sortorder><team>8472</team><id>4225654</id><n>494</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>14</elapsed><player1>35724</player1><sortorder>0</sortorder><team>9847</team><id>3326106</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>41</elapsed><player2>49677</player2><player1>35724</player1><sortorder>0</sortorder><team>9847</team><id>3326143</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>9</elapsed><player1>33973</player1><sortorder>0</sortorder><team>8560</team><id>1364168</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>32</elapsed><player1>184138</player1><sortorder>0</sortorder><team>8560</team><id>1364291</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>88</elapsed><player1>33997</player1><sortorder>0</sortorder><team>8560</team><id>1364817</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player1>33997</player1><sortorder>0</sortorder><team>8560</team><id>1364860</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>26</elapsed><player2>38817</player2><subtype>shot</subtype><player1>108808</player1><sortorder>3</sortorder><team>8456</team><id>1432891</id><n>235</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>48</elapsed><player2>31907</player2><subtype>shot</subtype><player1>34574</player1><sortorder>1</sortorder><team>9879</team><id>1433214</id><n>261</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>14</elapsed><player1>37042</player1><sortorder>0</sortorder><team>8165</team><id>1025984</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>40</elapsed><player1>95082</player1><sortorder>0</sortorder><team>8165</team><id>1026262</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>18</value><value>56</value></coordinates><elapsed>53</elapsed><subtype>shot</subtype><player1>473855</player1><sortorder>1</sortorder><team>8592</team><id>4985882</id><n>358</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player1>41862</player1><sortorder>0</sortorder><team>9882</team><id>498868</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>32748</player1><sortorder>0</sortorder><team>9882</team><id>499432</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>32748</player1><sortorder>0</sortorder><team>9882</team><id>499659</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>26307</player1><sortorder>0</sortorder><team>8592</team><id>2605362</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>30</elapsed><subtype>shot</subtype><player1>39474</player1><sortorder>3</sortorder><team>10233</team><id>961746</id><n>215</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>53</elapsed><player1>39474</player1><sortorder>2</sortorder><team>10233</team><id>961962</id><n>240</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>64</elapsed><player2>37767</player2><subtype>header</subtype><player1>30991</player1><sortorder>6</sortorder><team>10233</team><id>962056</id><n>252</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>7</elapsed><player2>38460</player2><subtype>shot</subtype><player1>37412</player1><sortorder>3</sortorder><team>9906</team><id>776035</id><n>268</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>25</elapsed><player2>108568</player2><subtype>shot</subtype><player1>2802</player1><sortorder>3</sortorder><team>10267</team><id>776095</id><n>308</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>27</elapsed><player2>37459</player2><subtype>shot</subtype><player1>30909</player1><sortorder>2</sortorder><team>10267</team><id>776100</id><n>282</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>32656</player2><subtype>shot</subtype><player1>33632</player1><sortorder>1</sortorder><team>9906</team><id>776285</id><n>387</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>4</value></coordinates><elapsed>50</elapsed><player2>192625</player2><subtype>shot</subtype><player1>58346</player1><sortorder>4</sortorder><team>9788</team><id>4453978</id><n>260</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><coordinates><value>29</value><value>5</value></coordinates><elapsed>81</elapsed><subtype>loose_ball</subtype><player1>192625</player1><sortorder>3</sortorder><team>9788</team><id>4454688</id><n>523</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>32</value><value>13</value></coordinates><elapsed>88</elapsed><player2>37357</player2><subtype>distance</subtype><player1>58351</player1><sortorder>1</sortorder><team>9788</team><id>4454979</id><n>505</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>30</elapsed><player1>34582</player1><sortorder>0</sortorder><team>9869</team><id>1008988</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>65</elapsed><player1>45744</player1><sortorder>0</sortorder><team>9783</team><id>1009046</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>90</elapsed><player1>24383</player1><sortorder>0</sortorder><team>9869</team><id>1009072</id><n>27</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>6</value></coordinates><elapsed>34</elapsed><player2>40193</player2><subtype>shot</subtype><player1>36410</player1><sortorder>4</sortorder><team>8721</team><id>4975041</id><n>221</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>23</value><value>66</value></coordinates><elapsed>40</elapsed><player2>269788</player2><subtype>header</subtype><player1>70409</player1><sortorder>2</sortorder><team>8178</team><id>4975093</id><n>248</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>23</value><value>3</value></coordinates><elapsed>77</elapsed><player2>104045</player2><subtype>tap_in</subtype><player1>243164</player1><sortorder>2</sortorder><team>8721</team><id>4975892</id><n>561</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>48</elapsed><player2>30618</player2><subtype>header</subtype><player1>39032</player1><sortorder>1</sortorder><team>8650</team><id>1235079</id><n>231</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>51</elapsed><player1>30617</player1><sortorder>2</sortorder><team>8650</team><id>1235120</id><n>238</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>53</elapsed><player2>30630</player2><subtype>shot</subtype><player1>30853</player1><sortorder>2</sortorder><team>8650</team><id>1235161</id><n>242</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player1>39311</player1><sortorder>0</sortorder><team>8535</team><id>571296</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player1>39311</player1><sortorder>0</sortorder><team>8535</team><id>571298</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>52</elapsed><player1>31499</player1><sortorder>0</sortorder><team>9857</team><id>571302</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>30881</player1><sortorder>0</sortorder><team>8535</team><id>571311</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>391</event_incident_typefk><elapsed>5</elapsed><player2>40945</player2><subtype>loose_ball</subtype><player1>70409</player1><sortorder>1</sortorder><team>10260</team><id>1213874</id><n>236</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>25</elapsed><player2>27430</player2><subtype>shot</subtype><player1>40945</player1><sortorder>1</sortorder><team>10260</team><id>1214171</id><n>255</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>50</elapsed><player1>32569</player1><sortorder>1</sortorder><team>10260</team><id>1214614</id><n>288</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>55</elapsed><player2>23257</player2><subtype>shot</subtype><player1>33790</player1><sortorder>4</sortorder><team>8659</team><id>1214685</id><n>300</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>42</elapsed><subtype>loose_ball</subtype><player1>164210</player1><sortorder>1</sortorder><team>9783</team><id>826386</id><n>190</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>69</elapsed><player2>38886</player2><subtype>shot</subtype><player1>24383</player1><sortorder>2</sortorder><team>9869</team><id>826447</id><n>212</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>304</event_incident_typefk><elapsed>72</elapsed><subtype>loose_ball</subtype><player1>164210</player1><sortorder>1</sortorder><team>9783</team><id>826452</id><n>121</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>48</elapsed><player1>27234</player1><sortorder>0</sortorder><team>10269</team><id>2519052</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player1>97747</player1><sortorder>0</sortorder><team>9905</team><id>2519137</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>71</elapsed><player1>97747</player1><sortorder>0</sortorder><team>9905</team><id>2519215</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>22313</player1><sortorder>0</sortorder><team>9905</team><id>2519437</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><elapsed>28</elapsed><player1>67389</player1><sortorder>0</sortorder><team>10191</team><id>5581560</id><n>11</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>31</elapsed><player1>35831</player1><sortorder>0</sortorder><team>10190</team><id>5581562</id><n>12</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>63</elapsed><player1>119839</player1><sortorder>0</sortorder><team>10190</team><id>5582099</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player1>184610</player1><sortorder>0</sortorder><team>10191</team><id>5582711</id><n>34</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>23</elapsed><player2>109651</player2><subtype>volley</subtype><player1>103899</player1><sortorder>3</sortorder><team>8593</team><id>1554520</id><n>245</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>47</elapsed><player1>34492</player1><sortorder>0</sortorder><team>8611</team><id>1554968</id><n>271</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>48</elapsed><subtype>distance</subtype><player1>26611</player1><sortorder>0</sortorder><team>8611</team><id>1554984</id><n>270</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>78</elapsed><subtype>shot</subtype><player1>103899</player1><sortorder>0</sortorder><team>8593</team><id>1555310</id><n>304</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>24</elapsed><player2>165709</player2><subtype>distance</subtype><player1>24156</player1><sortorder>2</sortorder><team>10260</team><id>691385</id><n>250</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>22</elapsed><player1>24448</player1><sortorder>0</sortorder><team>8533</team><id>650143</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>48</elapsed><player1>24448</player1><sortorder>0</sortorder><team>8533</team><id>650463</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>391</event_incident_typefk><elapsed>34</elapsed><player2>75310</player2><subtype>loose_ball</subtype><player1>33991</player1><sortorder>1</sortorder><team>8302</team><id>2008871</id><n>200</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>52</elapsed><subtype>shot</subtype><player1>37474</player1><sortorder>0</sortorder><team>8302</team><id>2008969</id><n>227</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>4</elapsed_plus><event_incident_typefk>721</event_incident_typefk><elapsed>90</elapsed><player2>33991</player2><subtype>tap_in</subtype><player1>37474</player1><sortorder>1</sortorder><team>8302</team><id>2009126</id><n>236</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>15</elapsed><subtype>distance</subtype><player1>33639</player1><sortorder>1</sortorder><team>8636</team><id>1557857</id><n>124</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>80</event_incident_typefk><elapsed>45</elapsed><subtype>shot</subtype><player1>50074</player1><sortorder>2</sortorder><team>9875</team><id>1558148</id><n>137</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>59</elapsed><player1>27303</player1><sortorder>0</sortorder><team>10233</team><id>1509019</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>70</elapsed><player1>41652</player1><sortorder>0</sortorder><team>9858</team><id>1509185</id><n>21</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>46374</player1><sortorder>0</sortorder><team>10233</team><id>1509462</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>31</elapsed><player2>38834</player2><subtype>header</subtype><player1>51553</player1><sortorder>22</sortorder><team>8455</team><id>1711187</id><n>270</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>406</event_incident_typefk><elapsed>45</elapsed><player2>30631</player2><subtype>header</subtype><player1>30627</player1><sortorder>0</sortorder><team>8455</team><id>1711426</id><n>291</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><elapsed>61</elapsed><player2>41468</player2><subtype>tap_in</subtype><player1>79574</player1><sortorder>44</sortorder><team>8455</team><id>1711853</id><n>309</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><elapsed>81</elapsed><player2>42714</player2><subtype>tap_in</subtype><player1>186975</player1><sortorder>33</sortorder><team>8668</team><id>1711956</id><n>323</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>31</elapsed><player1>117541</player1><sortorder>0</sortorder><team>8674</team><id>4096644</id><n>11</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>33</elapsed><player2>352404</player2><player1>17855</player1><sortorder>0</sortorder><team>9908</team><id>4096674</id><n>14</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>50</elapsed><player2>485047</player2><player1>179239</player1><sortorder>0</sortorder><team>8674</team><id>4097297</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player1>352404</player1><sortorder>0</sortorder><team>9908</team><id>4097361</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>7</elapsed><player1>18506</player1><sortorder>0</sortorder><team>8543</team><id>403325</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>72</elapsed><player1>25597</player1><sortorder>0</sortorder><team>8543</team><id>403919</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>31</elapsed><player1>33856</player1><sortorder>0</sortorder><team>8661</team><id>1441836</id><n>177</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>33</elapsed><player2>33028</player2><subtype>shot</subtype><player1>2802</player1><sortorder>0</sortorder><team>10267</team><id>1441853</id><n>176</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>56</elapsed><player2>39122</player2><subtype>shot</subtype><player1>2802</player1><sortorder>0</sortorder><team>10267</team><id>1442227</id><n>204</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>25</value><value>63</value></coordinates><elapsed>8</elapsed><player1>182923</player1><sortorder>2</sortorder><team>9748</team><id>5059570</id><n>121</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>63</value></coordinates><elapsed>11</elapsed><player2>157560</player2><subtype>shot</subtype><player1>503149</player1><sortorder>1</sortorder><team>10249</team><id>5059603</id><n>140</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><coordinates><value>24</value><value>4</value></coordinates><elapsed>14</elapsed><subtype>header</subtype><player1>169193</player1><sortorder>4</sortorder><team>9748</team><id>5059634</id><n>199</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><elapsed_plus>1</elapsed_plus><event_incident_typefk>298</event_incident_typefk><coordinates><value>20</value><value>6</value></coordinates><elapsed>45</elapsed><subtype>shot</subtype><player1>473852</player1><sortorder>8</sortorder><team>9748</team><id>5059946</id><n>446</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>63</value></coordinates><elapsed>48</elapsed><player2>244558</player2><subtype>shot</subtype><player1>503149</player1><sortorder>2</sortorder><team>10249</team><id>5060012</id><n>493</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><coordinates><value>27</value><value>64</value></coordinates><elapsed>80</elapsed><subtype>loose_ball</subtype><player1>41124</player1><sortorder>3</sortorder><team>10249</team><id>5060285</id><n>704</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>24</value><value>12</value></coordinates><elapsed>84</elapsed><subtype>direct_freekick</subtype><player1>210120</player1><sortorder>0</sortorder><team>9748</team><id>5060317</id><n>711</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>33</elapsed><player1>37550</player1><sortorder>0</sortorder><team>8697</team><id>843185</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player1>71353</player1><sortorder>0</sortorder><team>8697</team><id>843822</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>57</elapsed><player1>37550</player1><sortorder>0</sortorder><team>8697</team><id>843943</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>67</elapsed><player1>36378</player1><sortorder>0</sortorder><team>8697</team><id>843944</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>73</elapsed><player1>28480</player1><sortorder>0</sortorder><team>8697</team><id>843977</id><n>23</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>82</elapsed><player1>30827</player1><sortorder>0</sortorder><team>8697</team><id>844089</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>25</elapsed><player2>33639</player2><subtype>shot</subtype><player1>24549</player1><sortorder>1</sortorder><team>8636</team><id>1544041</id><n>223</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>28</elapsed><player2>33639</player2><subtype>header</subtype><player1>30930</player1><sortorder>3</sortorder><team>8636</team><id>1544081</id><n>228</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>74</elapsed><player2>31725</player2><subtype>shot</subtype><player1>30881</player1><sortorder>2</sortorder><team>8535</team><id>1544892</id><n>271</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>77</elapsed><subtype>direct_freekick</subtype><player1>184536</player1><sortorder>1</sortorder><team>8636</team><id>1544942</id><n>273</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>43</elapsed><player1>184138</player1><sortorder>0</sortorder><team>8560</team><id>1247967</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player1>38551</player1><sortorder>0</sortorder><team>8560</team><id>1248161</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>77</elapsed><player1>191873</player1><sortorder>0</sortorder><team>9864</team><id>1248385</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player1>161328</player1><sortorder>0</sortorder><team>8564</team><id>2377865</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>82</elapsed><player1>161328</player1><sortorder>0</sortorder><team>8564</team><id>2378037</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>26</elapsed><player1>109280</player1><sortorder>0</sortorder><team>9874</team><id>2141350</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>39</elapsed><player1>179520</player1><sortorder>0</sortorder><team>9874</team><id>2141405</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>58</elapsed><player1>26420</player1><sortorder>0</sortorder><team>7819</team><id>2141658</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>132809</player1><sortorder>0</sortorder><team>9874</team><id>2141864</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>41</elapsed><player1>115591</player1><sortorder>0</sortorder><team>8721</team><id>4309841</id><n>228</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>18</value><value>66</value></coordinates><elapsed>44</elapsed><player2>281012</player2><subtype>header</subtype><player1>27234</player1><sortorder>1</sortorder><team>10269</team><id>4309975</id><n>244</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>31</value><value>21</value></coordinates><elapsed>65</elapsed><subtype>direct_freekick</subtype><player1>115591</player1><sortorder>0</sortorder><team>8721</team><id>4311491</id><n>370</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>9</value></coordinates><elapsed>76</elapsed><player2>169200</player2><subtype>shot</subtype><player1>178812</player1><sortorder>1</sortorder><team>8721</team><id>4311765</id><n>442</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>19</elapsed><player1>49677</player1><sortorder>0</sortorder><team>9875</team><id>2377888</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>31</elapsed><player1>49677</player1><sortorder>0</sortorder><team>9875</team><id>2377898</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>64</elapsed><player1>49677</player1><sortorder>0</sortorder><team>9875</team><id>2378011</id><n>29</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>20</value><value>64</value></coordinates><elapsed>5</elapsed><player2>306128</player2><subtype>tap_in</subtype><player1>574633</player1><sortorder>2</sortorder><team>9831</team><id>4846564</id><n>57</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>288</event_incident_typefk><coordinates><value>21</value><value>6</value></coordinates><elapsed>19</elapsed><subtype>deflected</subtype><player1>26353</player1><sortorder>3</sortorder><team>9853</team><id>4846674</id><n>127</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><coordinates><value>34</value><value>62</value></coordinates><elapsed>39</elapsed><subtype>volley</subtype><player1>26163</player1><sortorder>2</sortorder><team>9831</team><id>4846773</id><n>216</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>393</event_incident_typefk><coordinates><value>14</value><value>64</value></coordinates><elapsed>45</elapsed><player2>574633</player2><subtype>shot</subtype><player1>26163</player1><sortorder>2</sortorder><team>9831</team><id>4846804</id><n>243</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>28</value><value>60</value></coordinates><elapsed>53</elapsed><player2>239259</player2><subtype>shot</subtype><player1>470539</player1><sortorder>3</sortorder><team>9831</team><id>4846913</id><n>290</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>22</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>83</elapsed><subtype>missed</subtype><player1>242958</player1><sortorder>0</sortorder><team>9853</team><id>4847078</id><n>383</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player1>154249</player1><sortorder>0</sortorder><team>10233</team><id>1160790</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>42425</player1><sortorder>0</sortorder><team>8533</team><id>1161182</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player1>39286</player1><sortorder>0</sortorder><team>8533</team><id>1161375</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>74</elapsed><player1>24448</player1><sortorder>0</sortorder><team>8533</team><id>1161545</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>34</value><value>9</value></coordinates><elapsed>4</elapsed><player2>37436</player2><subtype>shot</subtype><player1>31013</player1><sortorder>2</sortorder><team>9825</team><id>4510497</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>25</value><value>7</value></coordinates><elapsed>15</elapsed><subtype>shot</subtype><player1>31013</player1><sortorder>1</sortorder><team>9825</team><id>4510806</id><n>64</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>26</value><value>10</value></coordinates><elapsed>17</elapsed><player2>177503</player2><subtype>volley</subtype><player1>143793</player1><sortorder>6</sortorder><team>9825</team><id>4510907</id><n>86</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>26</value><value>2</value></coordinates><elapsed>37</elapsed><player2>37436</player2><subtype>tap_in</subtype><player1>31013</player1><sortorder>3</sortorder><team>9825</team><id>4511543</id><n>176</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>26</value><value>65</value></coordinates><elapsed>57</elapsed><player2>23257</player2><subtype>header</subtype><player1>32441</player1><sortorder>5</sortorder><team>8659</team><id>4512421</id><n>282</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>4</elapsed><player1>33892</player1><sortorder>0</sortorder><team>8696</team><id>686285</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>13</elapsed><player1>38471</player1><sortorder>0</sortorder><team>10281</team><id>686377</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>20</elapsed><player1>39142</player1><sortorder>0</sortorder><team>10281</team><id>686423</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>61</elapsed><player1>150644</player1><sortorder>0</sortorder><team>8696</team><id>686810</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>85</elapsed><player1>38567</player1><sortorder>0</sortorder><team>8696</team><id>686959</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>31</value><value>65</value></coordinates><elapsed>41</elapsed><player2>24159</player2><subtype>shot</subtype><player1>180330</player1><sortorder>1</sortorder><team>8472</team><id>5181105</id><n>166</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>31</value><value>8</value></coordinates><elapsed>42</elapsed><subtype>shot</subtype><player1>157723</player1><sortorder>2</sortorder><team>8586</team><id>5181109</id><n>179</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>26</value><value>9</value></coordinates><elapsed>60</elapsed><subtype>shot</subtype><player1>41008</player1><sortorder>3</sortorder><team>8586</team><id>5181187</id><n>296</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><coordinates><value>26</value><value>20</value></coordinates><elapsed>67</elapsed><player2>361315</player2><subtype>deflected</subtype><player1>157723</player1><sortorder>1</sortorder><team>8586</team><id>5181229</id><n>322</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>79</elapsed><player1>194165</player1><sortorder>2</sortorder><team>8586</team><id>5181278</id><n>375</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player1>96615</player1><sortorder>0</sortorder><team>8371</team><id>1089091</id><n>15</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>61</elapsed><player1>38129</player1><sortorder>0</sortorder><team>9868</team><id>1089135</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>3</elapsed><player1>34029</player1><sortorder>0</sortorder><team>8633</team><id>2757435</id><n>33</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>15</elapsed><player1>30646</player1><sortorder>0</sortorder><team>9864</team><id>2757485</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>26</elapsed><player1>30893</player1><sortorder>0</sortorder><team>8633</team><id>2757543</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player1>36378</player1><sortorder>0</sortorder><team>8633</team><id>2757613</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>36</elapsed><player1>45244</player1><sortorder>0</sortorder><team>9864</team><id>2757614</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>26166</player1><sortorder>0</sortorder><team>8633</team><id>2757692</id><n>36</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>63</elapsed><player1>31097</player1><sortorder>0</sortorder><team>8633</team><id>2757902</id><n>38</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>46509</player1><sortorder>0</sortorder><team>8633</team><id>2757952</id><n>31</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>5</elapsed><player2>115591</player2><subtype>shot</subtype><player1>10967</player1><sortorder>12</sortorder><team>8721</team><id>1927729</id><n>307</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>12</elapsed><subtype>shot</subtype><player1>37087</player1><sortorder>11</sortorder><team>8358</team><id>1927763</id><n>313</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>14</elapsed><player2>27774</player2><subtype>shot</subtype><player1>37317</player1><sortorder>11</sortorder><team>8721</team><id>1927777</id><n>317</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>38</elapsed><player2>240837</player2><subtype>shot</subtype><player1>188498</player1><sortorder>1</sortorder><team>8358</team><id>1927883</id><n>350</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>61</elapsed><player2>30530</player2><subtype>shot</subtype><player1>10967</player1><sortorder>0</sortorder><team>8721</team><id>1927992</id><n>389</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>10</value><value>13</value></coordinates><elapsed>86</elapsed><player2>40683</player2><subtype>distance</subtype><player1>69541</player1><sortorder>0</sortorder><team>9851</team><id>4678527</id><n>350</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>10</elapsed><subtype>saved_back_into_play</subtype><player1>184629</player1><sortorder>1</sortorder><team>8535</team><id>4195998</id><n>114</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>9</value></coordinates><elapsed>85</elapsed><player2>30881</player2><subtype>shot</subtype><player1>292462</player1><sortorder>1</sortorder><team>8535</team><id>4196627</id><n>595</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>15</value><value>65</value></coordinates><elapsed>88</elapsed><subtype>shot</subtype><player1>41432</player1><sortorder>1</sortorder><team>9804</team><id>4196651</id><n>614</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>879</event_incident_typefk><coordinates><value>20</value><value>9</value></coordinates><elapsed>28</elapsed><subtype>lob</subtype><player1>476769</player1><sortorder>4</sortorder><team>8722</team><id>4238733</id><n>178</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>27</value><value>67</value></coordinates><elapsed>58</elapsed><subtype>shot</subtype><player1>27478</player1><sortorder>6</sortorder><team>9810</team><id>4239428</id><n>496</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>15</value><value>12</value></coordinates><elapsed>72</elapsed><player2>167589</player2><subtype>distance</subtype><player1>127945</player1><sortorder>3</sortorder><team>8722</team><id>4239641</id><n>530</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>9</value></coordinates><elapsed>79</elapsed><player2>196366</player2><subtype>shot</subtype><player1>166449</player1><sortorder>2</sortorder><team>8722</team><id>4239735</id><n>582</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>31</value><value>8</value></coordinates><elapsed>82</elapsed><player2>127945</player2><subtype>shot</subtype><player1>196366</player1><sortorder>1</sortorder><team>8722</team><id>4239769</id><n>604</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>90</elapsed><player1>27478</player1><sortorder>8</sortorder><team>9810</team><id>4239900</id><n>677</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>26</elapsed><player1>108809</player1><sortorder>0</sortorder><team>8371</team><id>2562708</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>61</elapsed><player1>37489</player1><sortorder>0</sortorder><team>8371</team><id>2562755</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>75474</player1><sortorder>0</sortorder><team>9783</team><id>2562782</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><coordinates><value>16</value><value>62</value></coordinates><elapsed>3</elapsed><player2>156097</player2><subtype>deflected</subtype><player1>449492</player1><sortorder>1</sortorder><team>8372</team><id>5146456</id><n>34</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>24</value><value>64</value></coordinates><elapsed>17</elapsed><player2>193224</player2><subtype>volley</subtype><player1>156097</player1><sortorder>4</sortorder><team>8372</team><id>5146567</id><n>156</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>22</value><value>65</value></coordinates><elapsed>71</elapsed><player2>449492</player2><subtype>tap_in</subtype><player1>40501</player1><sortorder>5</sortorder><team>8372</team><id>5146982</id><n>471</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>36</value><value>57</value></coordinates><elapsed>82</elapsed><player2>434404</player2><subtype>distance</subtype><player1>200917</player1><sortorder>1</sortorder><team>8372</team><id>5147075</id><n>574</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>37</elapsed><subtype>loose_ball</subtype><player1>24159</player1><sortorder>2</sortorder><team>8472</team><id>3166618</id><n>282</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>43</elapsed><player2>110189</player2><subtype>shot</subtype><player1>114971</player1><sortorder>4</sortorder><team>8586</team><id>3166645</id><n>319</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>50</elapsed><player1>24150</player1><sortorder>1</sortorder><team>8472</team><id>3166724</id><n>268</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>78</elapsed><player1>46700</player1><sortorder>0</sortorder><team>8358</team><id>1136681</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>83</elapsed><player1>26959</player1><sortorder>0</sortorder><team>8152</team><id>1136802</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player1>147732</player1><sortorder>0</sortorder><team>8152</team><id>1136951</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>35852</player1><sortorder>0</sortorder><team>8152</team><id>1136952</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>npm</comment><event_incident_typefk>159</event_incident_typefk><elapsed>9</elapsed><subtype>saved</subtype><player1>27335</player1><sortorder>0</sortorder><team>8462</team><id>847942</id><n>28</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>74</elapsed><player2>24773</player2><subtype>shot</subtype><player1>38755</player1><sortorder>1</sortorder><team>10194</team><id>848646</id><n>289</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>10</elapsed><player2>23949</player2><subtype>shot</subtype><player1>23264</player1><sortorder>2</sortorder><team>10252</team><id>1404362</id><n>277</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>14</elapsed><player2>39109</player2><subtype>header</subtype><player1>46344</player1><sortorder>1</sortorder><team>8483</team><id>1404443</id><n>282</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>29</elapsed><player1>94916</player1><sortorder>0</sortorder><team>8295</team><id>681868</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>39</elapsed><player1>94916</player1><sortorder>0</sortorder><team>8295</team><id>682028</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player1>38206</player1><sortorder>0</sortorder><team>8295</team><id>682541</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>73</elapsed><player1>37550</player1><sortorder>0</sortorder><team>8697</team><id>682693</id><n>31</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>60</value></coordinates><elapsed>60</elapsed><player2>212645</player2><subtype>shot</subtype><player1>282723</player1><sortorder>1</sortorder><team>8534</team><id>4967123</id><n>233</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>31</value><value>8</value></coordinates><elapsed>67</elapsed><player2>175646</player2><subtype>shot</subtype><player1>39295</player1><sortorder>2</sortorder><team>9882</team><id>4967142</id><n>394</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>60</elapsed><player1>34582</player1><sortorder>0</sortorder><team>9869</team><id>669880</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>33025</player1><sortorder>0</sortorder><team>8315</team><id>670087</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>11</elapsed><player1>25366</player1><sortorder>0</sortorder><team>8697</team><id>506787</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>20</elapsed><player1>25366</player1><sortorder>0</sortorder><team>8697</team><id>506821</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>44</elapsed><player1>31235</player1><sortorder>0</sortorder><team>8697</team><id>507060</id><n>19</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>25366</player1><sortorder>0</sortorder><team>8697</team><id>507516</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>75</elapsed><player1>27316</player1><sortorder>0</sortorder><team>8697</team><id>507555</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>39</elapsed><player1>30459</player1><sortorder>0</sortorder><team>9864</team><id>1656089</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>29</value><value>63</value></coordinates><elapsed>56</elapsed><subtype>shot</subtype><player1>30284</player1><sortorder>1</sortorder><team>8534</team><id>5169084</id><n>273</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>20</value><value>51</value></coordinates><elapsed>33</elapsed><subtype>direct_freekick</subtype><player1>476771</player1><sortorder>1</sortorder><team>8600</team><id>5316336</id><n>244</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>57</elapsed><player1>41269</player1><sortorder>2</sortorder><team>10233</team><id>5316999</id><n>375</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>649</event_incident_typefk><coordinates><value>19</value><value>4</value></coordinates><elapsed>70</elapsed><subtype>tap_in</subtype><player1>429988</player1><sortorder>1</sortorder><team>10233</team><id>5317241</id><n>485</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>90</elapsed><subtype>saved_back_into_play</subtype><player1>27734</player1><sortorder>2</sortorder><team>8600</team><id>5317519</id><n>573</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>52</elapsed><player1>157252</player1><sortorder>0</sortorder><team>10269</team><id>2745837</id><n>20</n><type>goal</type><goal_type>o</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>75</elapsed><player1>39842</player1><sortorder>0</sortorder><team>8357</team><id>2746087</id><n>8</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player1>355363</player1><sortorder>0</sortorder><team>8357</team><id>2746286</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><coordinates><value>12</value><value>13</value></coordinates><elapsed>45</elapsed><player2>42645</player2><subtype>deflected</subtype><player1>248453</player1><sortorder>0</sortorder><team>9885</team><id>4456553</id><n>187</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><coordinates><value>19</value><value>67</value></coordinates><elapsed>85</elapsed><subtype>loose_ball</subtype><player1>74009</player1><sortorder>3</sortorder><team>8529</team><id>4457157</id><n>356</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><elapsed>43</elapsed><subtype>shot</subtype><player1>25005</player1><sortorder>2</sortorder><team>8528</team><id>1044553</id><n>146</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>29</elapsed><player2>30731</player2><subtype>shot</subtype><player1>38717</player1><sortorder>3</sortorder><team>9885</team><id>1667182</id><n>326</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>52</elapsed><player2>190872</player2><subtype>header</subtype><player1>24792</player1><sortorder>3</sortorder><team>9857</team><id>1667797</id><n>329</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>32</elapsed><player1>38843</player1><sortorder>0</sortorder><team>9823</team><id>611222</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>50</elapsed><player1>32118</player1><sortorder>0</sortorder><team>9823</team><id>611812</id><n>10</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>60</elapsed><player1>30894</player1><sortorder>0</sortorder><team>9823</team><id>611902</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>30459</player1><sortorder>0</sortorder><team>9823</team><id>612183</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>19</value><value>3</value></coordinates><elapsed>26</elapsed><player2>37506</player2><subtype>tap_in</subtype><player1>201939</player1><sortorder>3</sortorder><team>10205</team><id>5167617</id><n>126</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>13</value><value>7</value></coordinates><elapsed>51</elapsed><player2>37506</player2><subtype>shot</subtype><player1>201939</player1><sortorder>1</sortorder><team>10205</team><id>5167751</id><n>223</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>45</elapsed><player1>41475</player1><sortorder>0</sortorder><team>8654</team><id>891168</id><n>211</n><type>goal</type><goal_type>p</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>61</elapsed><player1>30631</player1><sortorder>0</sortorder><team>8455</team><id>891326</id><n>228</n><type>goal</type><goal_type>p</goal_type></value><value><comment>rp</comment><event_incident_typefk>486</event_incident_typefk><elapsed>59</elapsed><sortorder>1</sortorder><team>8455</team><id>891598</id><n>147</n><type>goal</type><goal_type>rp</goal_type></value><value><comment>rp</comment><event_incident_typefk>486</event_incident_typefk><elapsed>60</elapsed><sortorder>0</sortorder><team>8455</team><id>891609</id><n>162</n><type>goal</type><goal_type>rp</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>6</value></coordinates><elapsed>27</elapsed><player2>150080</player2><subtype>header</subtype><player1>282713</player1><sortorder>2</sortorder><team>7878</team><id>5210930</id><n>265</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><coordinates><value>24</value><value>4</value></coordinates><elapsed>36</elapsed><subtype>loose_ball</subtype><player1>161291</player1><sortorder>6</sortorder><team>7878</team><id>5211048</id><n>330</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>882</event_incident_typefk><coordinates><value>19</value><value>62</value></coordinates><elapsed>71</elapsed><player2>112205</player2><subtype>lob</subtype><player1>183548</player1><sortorder>1</sortorder><team>8305</team><id>5211941</id><n>566</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>26</value><value>67</value></coordinates><elapsed>74</elapsed><player2>240054</player2><subtype>volley</subtype><player1>262592</player1><sortorder>1</sortorder><team>8305</team><id>5211965</id><n>559</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>16</value><value>14</value></coordinates><elapsed>77</elapsed><player2>2805</player2><subtype>distance</subtype><player1>213711</player1><sortorder>0</sortorder><team>7878</team><id>5211986</id><n>598</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>75</elapsed><player1>161420</player1><sortorder>0</sortorder><team>9829</team><id>3169193</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>21</elapsed><player2>39618</player2><subtype>volley</subtype><player1>25666</player1><sortorder>4</sortorder><team>8668</team><id>2367026</id><n>327</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>649</event_incident_typefk><elapsed>43</elapsed><subtype>tap_in</subtype><player1>26151</player1><sortorder>4</sortorder><team>8668</team><id>2367153</id><n>359</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>82</elapsed><player2>24846</player2><subtype>header</subtype><player1>39618</player1><sortorder>1</sortorder><team>8668</team><id>2367477</id><n>424</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>32</elapsed><player2>24208</player2><subtype>shot</subtype><player1>37412</player1><sortorder>0</sortorder><team>8456</team><id>1808448</id><n>299</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>51</elapsed><subtype>direct_freekick</subtype><player1>26181</player1><sortorder>1</sortorder><team>8456</team><id>1808958</id><n>300</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>68</elapsed><player2>37459</player2><subtype>shot</subtype><player1>36615</player1><sortorder>1</sortorder><team>8456</team><id>1809311</id><n>329</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>81</elapsed><player2>23727</player2><subtype>header</subtype><player1>37166</player1><sortorder>0</sortorder><team>9850</team><id>1809496</id><n>330</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>88</elapsed><player2>24159</player2><subtype>header</subtype><player1>108808</player1><sortorder>22</sortorder><team>8456</team><id>1809603</id><n>295</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>39027</player2><subtype>shot</subtype><player1>24159</player1><sortorder>6</sortorder><team>8456</team><id>1809660</id><n>335</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>7</elapsed><player2>33973</player2><subtype>shot</subtype><player1>38551</player1><sortorder>1</sortorder><team>8560</team><id>1259917</id><n>261</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>21</value><value>63</value></coordinates><elapsed>72</elapsed><player2>182223</player2><subtype>header</subtype><player1>107415</player1><sortorder>5</sortorder><team>10252</team><id>4654202</id><n>416</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>8</elapsed><player1>27734</player1><sortorder>0</sortorder><team>8600</team><id>3220713</id><n>25</n><type>goal</type><goal_type>p</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>63</elapsed><player1>11685</player1><sortorder>0</sortorder><team>8543</team><id>3220780</id><n>29</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>68</elapsed><player1>192325</player1><sortorder>0</sortorder><team>8600</team><id>3220787</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>82</elapsed><player1>41404</player1><sortorder>0</sortorder><team>8600</team><id>3220797</id><n>32</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>21446</player1><sortorder>0</sortorder><team>8543</team><id>3220805</id><n>34</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>16</elapsed><player2>37950</player2><subtype>shot</subtype><player1>78513</player1><sortorder>1</sortorder><team>9825</team><id>2011324</id><n>234</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>25</elapsed><player2>23678</player2><subtype>shot</subtype><player1>31013</player1><sortorder>1</sortorder><team>9825</team><id>2011451</id><n>257</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>130</event_incident_typefk><elapsed>90</elapsed><subtype>direct_freekick</subtype><player1>24011</player1><sortorder>1</sortorder><team>9825</team><id>2012658</id><n>321</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>20</elapsed><player1>50345</player1><sortorder>0</sortorder><team>8177</team><id>1776213</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>26545</player1><sortorder>0</sortorder><team>8177</team><id>1776622</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>61</elapsed><player1>38190</player1><sortorder>0</sortorder><team>8358</team><id>1777228</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>38190</player1><sortorder>0</sortorder><team>8358</team><id>1777748</id><n>30</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>13</elapsed><player1>26288</player1><sortorder>0</sortorder><team>8583</team><id>1830776</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>22</elapsed><player1>26394</player1><sortorder>0</sortorder><team>9831</team><id>1830859</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>65</elapsed><player1>47552</player1><sortorder>0</sortorder><team>8583</team><id>1831258</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>4</value></coordinates><elapsed>5</elapsed><player2>130118</player2><subtype>shot</subtype><player1>459499</player1><sortorder>2</sortorder><team>9905</team><id>5060854</id><n>62</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>21</value><value>7</value></coordinates><elapsed>43</elapsed><subtype>shot</subtype><player1>278863</player1><sortorder>5</sortorder><team>9905</team><id>5061684</id><n>466</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>16</value><value>60</value></coordinates><elapsed>62</elapsed><subtype>shot</subtype><player1>170775</player1><sortorder>1</sortorder><team>9810</team><id>5062460</id><n>761</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>25</elapsed><player1>46621</player1><sortorder>0</sortorder><team>8581</team><id>3113901</id><n>3</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>43372</player1><sortorder>0</sortorder><team>7878</team><id>3114331</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>45</elapsed><player2>35443</player2><subtype>shot</subtype><player1>33468</player1><sortorder>2</sortorder><team>8472</team><id>2711885</id><n>204</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>29</elapsed><player2>129944</player2><subtype>header</subtype><player1>38432</player1><sortorder>3</sortorder><team>9788</team><id>1397871</id><n>324</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>32</elapsed><player2>129944</player2><subtype>shot</subtype><player1>25957</player1><sortorder>0</sortorder><team>9788</team><id>1397906</id><n>328</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>51</elapsed><player2>27234</player2><subtype>shot</subtype><player1>41244</player1><sortorder>2</sortorder><team>10269</team><id>1398314</id><n>338</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>56</elapsed><player2>38842</player2><subtype>shot</subtype><player1>27234</player1><sortorder>0</sortorder><team>10269</team><id>1398389</id><n>343</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>87</elapsed><player1>97752</player1><sortorder>1</sortorder><team>10269</team><id>1398696</id><n>374</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>9</elapsed><player2>150250</player2><subtype>shot</subtype><player1>30909</player1><sortorder>0</sortorder><team>8634</team><id>1330096</id><n>112</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>33</elapsed><player2>150250</player2><subtype>shot</subtype><player1>30955</player1><sortorder>0</sortorder><team>8634</team><id>1330172</id><n>133</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>47</elapsed><player2>33988</player2><subtype>shot</subtype><player1>30981</player1><sortorder>2</sortorder><team>8634</team><id>1330230</id><n>141</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>87</elapsed><player2>96643</player2><subtype>shot</subtype><player1>30981</player1><sortorder>3</sortorder><team>8634</team><id>1330352</id><n>160</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>80</event_incident_typefk><elapsed>90</elapsed><subtype>shot</subtype><player1>96643</player1><sortorder>3</sortorder><team>8634</team><id>1330356</id><n>158</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player2>10950</player2><player1>36771</player1><sortorder>0</sortorder><team>8358</team><id>3324882</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>54</elapsed><player2>132844</player2><player1>33065</player1><sortorder>0</sortorder><team>8358</team><id>3325274</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>59</elapsed><player2>27352</player2><player1>172321</player1><sortorder>0</sortorder><team>9810</team><id>3325325</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>70</elapsed><player2>132844</player2><player1>237541</player1><sortorder>0</sortorder><team>8358</team><id>3325393</id><n>32</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player2>196311</player2><player1>33065</player1><sortorder>0</sortorder><team>8358</team><id>3325533</id><n>35</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>882</event_incident_typefk><coordinates><value>22</value><value>56</value></coordinates><elapsed>10</elapsed><player2>26160</player2><subtype>lob</subtype><player1>215299</player1><sortorder>1</sortorder><team>9847</team><id>4063146</id><n>52</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>29</value><value>63</value></coordinates><elapsed>20</elapsed><subtype>shot</subtype><player1>352879</player1><sortorder>1</sortorder><team>9847</team><id>4063337</id><n>97</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>32</elapsed><player1>155623</player1><sortorder>2</sortorder><team>7794</team><id>4063555</id><n>156</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>17</value><value>4</value></coordinates><elapsed>45</elapsed><player2>155623</player2><subtype>header</subtype><player1>26216</player1><sortorder>2</sortorder><team>7794</team><id>4063767</id><n>224</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><coordinates><value>18</value><value>15</value></coordinates><elapsed>56</elapsed><subtype>volley</subtype><player1>42693</player1><sortorder>2</sortorder><team>7794</team><id>4063964</id><n>293</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>4</value></coordinates><elapsed>89</elapsed><player2>409003</player2><subtype>shot</subtype><player1>42693</player1><sortorder>2</sortorder><team>7794</team><id>4064195</id><n>476</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>24</elapsed><player1>26399</player1><sortorder>0</sortorder><team>10249</team><id>2523666</id><n>20</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>43</elapsed><player1>25496</player1><sortorder>0</sortorder><team>8639</team><id>2523911</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>134232</player1><sortorder>0</sortorder><team>8639</team><id>2524092</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>74</elapsed><player1>172615</player1><sortorder>0</sortorder><team>8639</team><id>2524119</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>82</elapsed><player1>41124</player1><sortorder>0</sortorder><team>10249</team><id>2524151</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>44</event_incident_typefk><coordinates><value>25</value><value>6</value></coordinates><elapsed>45</elapsed><subtype>header</subtype><player1>264842</player1><sortorder>5</sortorder><team>8686</team><id>5268429</id><n>233</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>22</value><value>10</value></coordinates><elapsed>50</elapsed><player2>161328</player2><subtype>volley</subtype><player1>101422</player1><sortorder>1</sortorder><team>8686</team><id>5268533</id><n>253</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>25</value><value>62</value></coordinates><elapsed>57</elapsed><player1>96398</player1><sortorder>1</sortorder><team>8686</team><id>5268573</id><n>291</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>15</elapsed><player2>159833</player2><subtype>shot</subtype><player1>23949</player1><sortorder>4</sortorder><team>10252</team><id>1440049</id><n>312</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>406</event_incident_typefk><elapsed>45</elapsed><player2>33633</player2><subtype>header</subtype><player1>23783</player1><sortorder>1</sortorder><team>8559</team><id>1440469</id><n>344</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>64</elapsed><player2>30892</player2><subtype>shot</subtype><player1>139671</player1><sortorder>1</sortorder><team>10252</team><id>1440971</id><n>374</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><elapsed>70</elapsed><subtype>saved_back_into_play</subtype><player1>23354</player1><sortorder>0</sortorder><team>10252</team><id>1441080</id><n>211</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>75</elapsed><subtype>shot</subtype><player1>23783</player1><sortorder>1</sortorder><team>8559</team><id>1441152</id><n>388</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>86</elapsed><subtype>shot</subtype><player1>30753</player1><sortorder>7</sortorder><team>8559</team><id>1441411</id><n>410</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>46</elapsed><player2>169193</player2><player1>26344</player1><sortorder>0</sortorder><team>9748</team><id>3340801</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>5</elapsed><player1>38762</player1><sortorder>0</sortorder><team>8524</team><id>913500</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>8</elapsed><player1>38762</player1><sortorder>0</sortorder><team>8524</team><id>913540</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>35</elapsed><player1>42645</player1><sortorder>0</sortorder><team>8524</team><id>913799</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>60</elapsed><subtype>shot</subtype><player1>38567</player1><sortorder>2</sortorder><team>10267</team><id>790259</id><n>245</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>5</elapsed><player2>360559</player2><player1>189237</player1><sortorder>0</sortorder><team>8611</team><id>4213538</id><n>8</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>88</elapsed><player2>261599</player2><player1>112471</player1><sortorder>0</sortorder><team>9761</team><id>4214922</id><n>30</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>395</event_incident_typefk><elapsed>16</elapsed><player2>23257</player2><player1>25005</player1><sortorder>3</sortorder><team>8659</team><id>1297866</id><n>111</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>26</elapsed><subtype>direct_freekick</subtype><player1>23257</player1><sortorder>4</sortorder><team>8659</team><id>1298073</id><n>139</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>395</event_incident_typefk><elapsed>42</elapsed><player2>24846</player2><player1>30876</player1><sortorder>1</sortorder><team>8668</team><id>1298412</id><n>144</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>76</elapsed><player2>23922</player2><subtype>shot</subtype><player1>33790</player1><sortorder>5</sortorder><team>8659</team><id>1299240</id><n>126</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>87</elapsed><player1>24216</player1><sortorder>5</sortorder><team>8668</team><id>1299448</id><n>138</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>12</elapsed><player1>37411</player1><sortorder>0</sortorder><team>8661</team><id>420992</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>50</elapsed><player1>25574</player1><sortorder>0</sortorder><team>8661</team><id>421108</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>24</value><value>16</value></coordinates><elapsed>17</elapsed><player2>37215</player2><subtype>distance</subtype><player1>495222</player1><sortorder>0</sortorder><team>6413</team><id>5517996</id><n>139</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>42</value><value>16</value></coordinates><elapsed>27</elapsed><player2>243425</player2><subtype>shot</subtype><player1>562849</player1><sortorder>0</sortorder><team>6413</team><id>5518098</id><n>206</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>14</elapsed><player2>39968</player2><subtype>shot</subtype><player1>26163</player1><sortorder>1</sortorder><team>10261</team><id>1993774</id><n>207</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>15</elapsed><player2>31013</player2><subtype>shot</subtype><player1>30843</player1><sortorder>1</sortorder><team>9825</team><id>1993777</id><n>208</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>5</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>75489</player2><subtype>shot</subtype><player1>26005</player1><sortorder>3</sortorder><team>9825</team><id>1994033</id><n>295</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>17</elapsed><player1>94885</player1><sortorder>0</sortorder><team>8226</team><id>3175232</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>37</elapsed><player1>212893</player1><sortorder>0</sortorder><team>8226</team><id>3175331</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>150565</player1><sortorder>0</sortorder><team>9789</team><id>3175407</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>67</elapsed><player1>13518</player1><sortorder>0</sortorder><team>9789</team><id>3175770</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>39</elapsed><player2>157729</player2><subtype>volley</subtype><player1>23991</player1><sortorder>2</sortorder><team>10003</team><id>1909154</id><n>257</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>115</event_incident_typefk><elapsed>90</elapsed><player1>102356</player1><sortorder>0</sortorder><team>10003</team><id>1909835</id><n>325</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>19</elapsed><player1>193530</player1><sortorder>2</sortorder><team>9790</team><id>5035107</id><n>91</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>6</value></coordinates><elapsed>41</elapsed><player2>97747</player2><subtype>shot</subtype><player1>128827</player1><sortorder>2</sortorder><team>9790</team><id>5035198</id><n>227</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>22</value><value>4</value></coordinates><elapsed>55</elapsed><player1>36388</player1><sortorder>2</sortorder><team>9789</team><id>5035335</id><n>325</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>63</value></coordinates><elapsed>86</elapsed><player2>449241</player2><subtype>shot</subtype><player1>150565</player1><sortorder>2</sortorder><team>9789</team><id>5035447</id><n>447</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>11</elapsed><player1>24549</player1><sortorder>0</sortorder><team>9882</team><id>638875</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>30</elapsed><player1>32748</player1><sortorder>0</sortorder><team>9882</team><id>638982</id><n>25</n><type>goal</type><goal_type>p</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>58</elapsed><player1>39701</player1><sortorder>0</sortorder><team>9888</team><id>639507</id><n>27</n><type>goal</type><goal_type>p</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>87</elapsed><player1>32748</player1><sortorder>0</sortorder><team>9882</team><id>640117</id><n>31</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>46</elapsed><player1>25818</player1><sortorder>0</sortorder><team>9875</team><id>2729987</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>58</elapsed><player1>25597</player1><sortorder>0</sortorder><team>9875</team><id>2729998</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>82</elapsed><player1>30940</player1><sortorder>0</sortorder><team>9875</team><id>2730011</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player1>96652</player1><sortorder>0</sortorder><team>8603</team><id>2355948</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>882</event_incident_typefk><coordinates><value>27</value><value>61</value></coordinates><elapsed>15</elapsed><player2>163160</player2><subtype>lob</subtype><player1>230900</player1><sortorder>1</sortorder><team>7819</team><id>4430907</id><n>41</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>25</value><value>4</value></coordinates><elapsed>41</elapsed><player2>294859</player2><subtype>header</subtype><player1>174062</player1><sortorder>2</sortorder><team>9831</team><id>4431338</id><n>191</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>21</value><value>64</value></coordinates><elapsed>3</elapsed><player2>317156</player2><subtype>header</subtype><player1>195199</player1><sortorder>0</sortorder><team>7943</team><id>5536206</id><n>33</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>32</value><value>8</value></coordinates><elapsed>7</elapsed><player2>195413</player2><subtype>shot</subtype><player1>267911</player1><sortorder>1</sortorder><team>9804</team><id>5536279</id><n>61</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>22</value><value>65</value></coordinates><elapsed>75</elapsed><player2>364520</player2><subtype>header</subtype><player1>41497</player1><sortorder>5</sortorder><team>7943</team><id>5537801</id><n>416</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>4</elapsed_plus><event_incident_typefk>393</event_incident_typefk><coordinates><value>28</value><value>63</value></coordinates><elapsed>90</elapsed><player2>215725</player2><subtype>shot</subtype><player1>282278</player1><sortorder>13</sortorder><team>7943</team><id>5538171</id><n>526</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>77</elapsed><player1>38151</player1><sortorder>0</sortorder><team>8371</team><id>2592945</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>97491</player1><sortorder>0</sortorder><team>8661</team><id>2593126</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><coordinates><value>24</value><value>6</value></coordinates><elapsed>4</elapsed><subtype>header</subtype><player1>79574</player1><sortorder>2</sortorder><team>8455</team><id>4970740</id><n>43</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>58</value></coordinates><elapsed>45</elapsed><player2>242709</player2><subtype>shot</subtype><player1>184536</player1><sortorder>13</sortorder><team>8650</team><id>4970915</id><n>245</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><coordinates><value>19</value><value>61</value></coordinates><elapsed>74</elapsed><player2>148315</player2><subtype>deflected</subtype><player1>184536</player1><sortorder>5</sortorder><team>8650</team><id>4971116</id><n>447</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><coordinates><value>14</value><value>62</value></coordinates><elapsed>83</elapsed><player2>280653</player2><subtype>deflected</subtype><player1>148315</player1><sortorder>1</sortorder><team>8650</team><id>4971168</id><n>508</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>41</elapsed><player1>166019</player1><sortorder>0</sortorder><team>7794</team><id>2682799</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>50</elapsed><player1>254308</player1><sortorder>0</sortorder><team>7794</team><id>2682827</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>71</elapsed><player1>254308</player1><sortorder>0</sortorder><team>7794</team><id>2682868</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>79</elapsed><player1>71605</player1><sortorder>0</sortorder><team>7794</team><id>2682887</id><n>22</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>57</elapsed><player1>182925</player1><sortorder>0</sortorder><team>9748</team><id>3208990</id><n>15</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>75</elapsed><player1>33744</player1><sortorder>0</sortorder><team>9748</team><id>3209016</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>27</value><value>66</value></coordinates><elapsed>36</elapsed><subtype>shot</subtype><player1>231199</player1><sortorder>4</sortorder><team>9851</team><id>3955008</id><n>111</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>13</elapsed><player1>30287</player1><sortorder>0</sortorder><team>8315</team><id>1004511</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>32</elapsed><player1>37474</player1><sortorder>0</sortorder><team>8305</team><id>1004662</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>80</elapsed><player1>33030</player1><sortorder>0</sortorder><team>8315</team><id>1005124</id><n>25</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>86</elapsed><player1>75192</player1><sortorder>0</sortorder><team>8305</team><id>1005202</id><n>34</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>5</value></coordinates><elapsed>34</elapsed><player2>278343</player2><subtype>shot</subtype><player1>214570</player1><sortorder>0</sortorder><team>8197</team><id>3807886</id><n>400</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>66</value></coordinates><elapsed>39</elapsed><player2>27568</player2><subtype>shot</subtype><player1>32148</player1><sortorder>3</sortorder><team>8191</team><id>3808015</id><n>406</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><coordinates><value>26</value><value>5</value></coordinates><elapsed>41</elapsed><subtype>header</subtype><player1>278343</player1><sortorder>0</sortorder><team>8197</team><id>3808053</id><n>408</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>6</elapsed_plus><event_incident_typefk>130</event_incident_typefk><coordinates><value>19</value><value>57</value></coordinates><elapsed>90</elapsed><subtype>direct_freekick</subtype><player1>38880</player1><sortorder>16</sortorder><team>8191</team><id>3809746</id><n>469</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>38</elapsed><player1>32566</player1><sortorder>0</sortorder><team>9831</team><id>2369540</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player1>40018</player1><sortorder>0</sortorder><team>8689</team><id>2369625</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>22</elapsed><player2>30878</player2><subtype>shot</subtype><player1>30834</player1><sortorder>3</sortorder><team>8633</team><id>613320</id><n>271</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>34</elapsed><player2>30878</player2><subtype>header</subtype><player1>30670</player1><sortorder>1</sortorder><team>8633</team><id>613355</id><n>291</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>36</elapsed><player1>30670</player1><sortorder>2</sortorder><team>8633</team><id>613362</id><n>295</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>406</event_incident_typefk><elapsed>45</elapsed><player2>33866</player2><subtype>header</subtype><player1>33030</player1><sortorder>2</sortorder><team>8315</team><id>613393</id><n>311</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>47</elapsed><player2>30655</player2><subtype>shot</subtype><player1>36784</player1><sortorder>1</sortorder><team>8633</team><id>613406</id><n>319</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>61</elapsed><player2>30834</player2><subtype>shot</subtype><player1>36784</player1><sortorder>6</sortorder><team>8633</team><id>613450</id><n>342</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>85</elapsed><player1>25759</player1><sortorder>1</sortorder><team>8633</team><id>613503</id><n>370</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player1>134221</player1><sortorder>0</sortorder><team>9747</team><id>2936100</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>48</elapsed><player1>134221</player1><sortorder>0</sortorder><team>9747</team><id>2936177</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>24</elapsed><player2>154230</player2><player1>26142</player1><sortorder>0</sortorder><team>9827</team><id>3323426</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player2>25525</player2><player1>26138</player1><sortorder>0</sortorder><team>10249</team><id>3323489</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>5</elapsed><player1>26195</player1><sortorder>0</sortorder><team>8639</team><id>1562706</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>37554</player1><sortorder>0</sortorder><team>9847</team><id>1562949</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>60</elapsed><player1>26332</player1><sortorder>0</sortorder><team>8639</team><id>1563200</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>73</elapsed><player1>26155</player1><sortorder>0</sortorder><team>9847</team><id>1563381</id><n>29</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><elapsed>19</elapsed><subtype>saved_back_into_play</subtype><player1>37139</player1><sortorder>0</sortorder><team>8650</team><id>1971937</id><n>54</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>23</elapsed><player1>46539</player1><sortorder>3</sortorder><team>9825</team><id>1971948</id><n>255</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>31</elapsed><player2>26111</player2><subtype>header</subtype><player1>30843</player1><sortorder>1</sortorder><team>9825</team><id>1971959</id><n>261</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>90</elapsed><player2>23678</player2><subtype>volley</subtype><player1>30843</player1><sortorder>1</sortorder><team>9825</team><id>1972124</id><n>317</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>23</elapsed><player1>25759</player1><sortorder>0</sortorder><team>9875</team><id>5402329</id><n>150</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>15</elapsed><player1>31235</player1><sortorder>0</sortorder><team>8697</team><id>491364</id><n>252</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>44</event_incident_typefk><elapsed>45</elapsed><subtype>header</subtype><player1>28480</player1><sortorder>1</sortorder><team>8697</team><id>491728</id><n>287</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><elapsed>47</elapsed><subtype>shot</subtype><player1>28480</player1><sortorder>3</sortorder><team>8697</team><id>491868</id><n>80</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>48</elapsed><subtype>shot</subtype><player1>38848</player1><sortorder>1</sortorder><team>8722</team><id>491873</id><n>292</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>55</elapsed><subtype>distance</subtype><player1>37550</player1><sortorder>1</sortorder><team>8697</team><id>491947</id><n>300</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>17</value><value>15</value></coordinates><elapsed>15</elapsed><player2>23988</player2><subtype>distance</subtype><player1>280965</player1><sortorder>3</sortorder><team>8592</team><id>4772266</id><n>55</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>11</value></coordinates><elapsed>46</elapsed><player2>248689</player2><subtype>shot</subtype><player1>210398</player1><sortorder>1</sortorder><team>8592</team><id>4772608</id><n>216</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>30</value><value>8</value></coordinates><elapsed>66</elapsed><subtype>shot</subtype><player1>210398</player1><sortorder>3</sortorder><team>8592</team><id>4772721</id><n>262</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>4</value></coordinates><elapsed>70</elapsed><player2>280965</player2><subtype>shot</subtype><player1>248689</player1><sortorder>1</sortorder><team>8592</team><id>4772735</id><n>274</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>25</value><value>64</value></coordinates><elapsed>79</elapsed><player2>42693</player2><subtype>header</subtype><player1>40197</player1><sortorder>0</sortorder><team>7794</team><id>4772771</id><n>301</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>43</elapsed><player2>169193</player2><player1>154949</player1><sortorder>0</sortorder><team>9748</team><id>3268364</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>68</elapsed><player2>41360</player2><player1>26330</player1><sortorder>0</sortorder><team>9748</team><id>3268445</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>81</elapsed><player2>97521</player2><player1>26288</player1><sortorder>0</sortorder><team>8576</team><id>3268471</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player2>26330</player2><player1>26344</player1><sortorder>0</sortorder><team>9748</team><id>3268489</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>31</elapsed><subtype>saved_back_into_play</subtype><player1>30981</player1><sortorder>0</sortorder><team>8634</team><id>4706373</id><n>108</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>22</value><value>64</value></coordinates><elapsed>54</elapsed><player2>150739</player2><subtype>volley</subtype><player1>40636</player1><sortorder>2</sortorder><team>8634</team><id>4706880</id><n>278</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>8</elapsed><player2>32569</player2><subtype>shot</subtype><player1>30802</player1><sortorder>1</sortorder><team>10260</team><id>1853807</id><n>187</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>41</elapsed><player2>24156</player2><subtype>shot</subtype><player1>27430</player1><sortorder>2</sortorder><team>10260</team><id>1854135</id><n>225</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>58</elapsed><player2>35327</player2><subtype>shot</subtype><player1>27430</player1><sortorder>0</sortorder><team>10260</team><id>1854353</id><n>245</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>75</elapsed><player2>34944</player2><subtype>shot</subtype><player1>35327</player1><sortorder>5</sortorder><team>10260</team><id>1854546</id><n>259</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>78</elapsed><player1>27430</player1><sortorder>1</sortorder><team>10260</team><id>1854571</id><n>261</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>30</elapsed><player1>27734</player1><sortorder>0</sortorder><team>8600</team><id>2121574</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>66</elapsed><player1>41542</player1><sortorder>0</sortorder><team>8600</team><id>2122478</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>20</value><value>64</value></coordinates><elapsed>80</elapsed><player2>359193</player2><subtype>header</subtype><player1>31921</player1><sortorder>1</sortorder><team>8633</team><id>5556301</id><n>484</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>npm</comment><event_incident_typefk>22</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>21</elapsed><subtype>missed</subtype><player1>116772</player1><sortorder>0</sortorder><team>9823</team><id>4831672</id><n>81</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>27</value><value>63</value></coordinates><elapsed>51</elapsed><player2>429265</player2><subtype>header</subtype><player1>93447</player1><sortorder>1</sortorder><team>9823</team><id>4832722</id><n>228</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>64</value></coordinates><elapsed>63</elapsed><player2>49939</player2><subtype>shot</subtype><player1>93447</player1><sortorder>3</sortorder><team>9823</team><id>4833086</id><n>324</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>20</value><value>65</value></coordinates><elapsed>68</elapsed><player2>156726</player2><subtype>tap_in</subtype><player1>429265</player1><sortorder>2</sortorder><team>9823</team><id>4833180</id><n>349</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>40</elapsed><player1>30496</player1><sortorder>0</sortorder><team>9790</team><id>2044286</id><n>270</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><elapsed>55</elapsed><subtype>header</subtype><player1>178812</player1><sortorder>3</sortorder><team>8178</team><id>2044719</id><n>271</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>21</value><value>4</value></coordinates><elapsed>20</elapsed><subtype>shot</subtype><player1>479020</player1><sortorder>5</sortorder><team>10261</team><id>4391160</id><n>115</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>406</event_incident_typefk><coordinates><value>25</value><value>63</value></coordinates><elapsed>45</elapsed><player2>157729</player2><subtype>header</subtype><player1>156556</player1><sortorder>9</sortorder><team>10003</team><id>4391918</id><n>233</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>60</value></coordinates><elapsed>50</elapsed><player2>52563</player2><subtype>shot</subtype><player1>157729</player1><sortorder>0</sortorder><team>10003</team><id>4392467</id><n>259</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>288</event_incident_typefk><coordinates><value>30</value><value>61</value></coordinates><elapsed>71</elapsed><subtype>deflected</subtype><player1>46008</player1><sortorder>2</sortorder><team>10003</team><id>4393180</id><n>371</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>8</value></coordinates><elapsed>87</elapsed><player2>160243</player2><subtype>shot</subtype><player1>103899</player1><sortorder>2</sortorder><team>10261</team><id>4393588</id><n>452</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>59</elapsed><player1>8985</player1><sortorder>1</sortorder><team>9826</team><id>3401725</id><n>324</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player1>56686</player1><sortorder>0</sortorder><team>8560</team><id>2583757</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>70</elapsed><player1>75342</player1><sortorder>0</sortorder><team>8560</team><id>2583780</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>88</elapsed><player1>99054</player1><sortorder>0</sortorder><team>8560</team><id>2583826</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>406</event_incident_typefk><elapsed>45</elapsed><player2>38820</player2><subtype>header</subtype><player1>30830</player1><sortorder>1</sortorder><team>8586</team><id>888092</id><n>214</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>83</elapsed><player2>30818</player2><subtype>shot</subtype><player1>30830</player1><sortorder>0</sortorder><team>8586</team><id>888587</id><n>241</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>26</value><value>18</value></coordinates><elapsed>2</elapsed><subtype>direct_freekick</subtype><player1>167634</player1><sortorder>0</sortorder><team>9857</team><id>5187778</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>8</value></coordinates><elapsed>18</elapsed><player2>24793</player2><subtype>shot</subtype><player1>154249</player1><sortorder>3</sortorder><team>9857</team><id>5188136</id><n>143</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>71</elapsed><player1>11685</player1><sortorder>0</sortorder><team>8543</team><id>5189346</id><n>558</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>61</value></coordinates><elapsed>77</elapsed><player2>30638</player2><subtype>shot</subtype><player1>66890</player1><sortorder>1</sortorder><team>8543</team><id>5189454</id><n>595</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>18</elapsed><player1>30919</player1><sortorder>0</sortorder><team>8165</team><id>797608</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>26</elapsed><player1>35831</player1><sortorder>0</sortorder><team>8165</team><id>797622</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>60</elapsed><player1>35831</player1><sortorder>0</sortorder><team>8165</team><id>798617</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>41198</player1><sortorder>0</sortorder><team>9853</team><id>3155117</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>76</elapsed><player1>26353</player1><sortorder>2</sortorder><team>9853</team><id>3155285</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>78</elapsed><player1>26353</player1><sortorder>0</sortorder><team>9853</team><id>3155299</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>88</elapsed><player1>26374</player1><sortorder>0</sortorder><team>9853</team><id>3155442</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>9</elapsed><player1>27556</player1><sortorder>0</sortorder><team>8178</team><id>664908</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>26</elapsed><player1>34681</player1><sortorder>0</sortorder><team>8178</team><id>664961</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>87</elapsed><player1>30249</player1><sortorder>0</sortorder><team>10189</team><id>666008</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>15</elapsed><player1>354467</player1><sortorder>0</sortorder><team>9829</team><id>3045041</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>49</elapsed><player1>179845</player1><sortorder>0</sortorder><team>9853</team><id>3045101</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>87</elapsed><player1>357080</player1><sortorder>0</sortorder><team>9829</team><id>3045456</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>889</event_incident_typefk><coordinates><value>22</value><value>67</value></coordinates><elapsed>45</elapsed><player2>35515</player2><subtype>backheel</subtype><player1>156013</player1><sortorder>5</sortorder><team>8678</team><id>5472914</id><n>283</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>21</value><value>64</value></coordinates><elapsed>74</elapsed><subtype>shot</subtype><player1>185236</player1><sortorder>2</sortorder><team>8678</team><id>5474137</id><n>454</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>10</value></coordinates><elapsed>85</elapsed><player2>179410</player2><subtype>shot</subtype><player1>154280</player1><sortorder>2</sortorder><team>10252</team><id>5474392</id><n>530</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>90</elapsed><player1>171091</player1><sortorder>10</sortorder><team>8234</team><id>4793547</id><n>719</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>22</elapsed><player1>41326</player1><sortorder>0</sortorder><team>8529</team><id>1497272</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>61</elapsed><player1>27664</player1><sortorder>0</sortorder><team>9858</team><id>1498222</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>33</elapsed><subtype>shot</subtype><player1>30822</player1><sortorder>4</sortorder><team>8455</team><id>1069918</id><n>258</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>54</elapsed><player2>37804</player2><subtype>shot</subtype><player1>30631</player1><sortorder>3</sortorder><team>8455</team><id>1070327</id><n>274</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>14</elapsed><player1>50047</player1><sortorder>0</sortorder><team>8634</team><id>2788311</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>85</elapsed><player1>150250</player1><sortorder>0</sortorder><team>8634</team><id>2788503</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>9</elapsed><player2>28439</player2><subtype>shot</subtype><player1>34106</player1><sortorder>4</sortorder><team>8302</team><id>838192</id><n>251</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>29</elapsed><player2>38468</player2><subtype>shot</subtype><player1>37478</player1><sortorder>2</sortorder><team>10205</team><id>838272</id><n>270</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>59</elapsed><subtype>shot</subtype><player1>38468</player1><sortorder>2</sortorder><team>10205</team><id>838413</id><n>306</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>61</elapsed><player2>33992</player2><subtype>header</subtype><player1>34106</player1><sortorder>4</sortorder><team>8302</team><id>838422</id><n>311</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>66</elapsed><player2>33992</player2><subtype>header</subtype><player1>33989</player1><sortorder>3</sortorder><team>8302</team><id>838451</id><n>324</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>4</value></coordinates><elapsed>32</elapsed><player2>287691</player2><subtype>shot</subtype><player1>41294</player1><sortorder>3</sortorder><team>8581</team><id>4460094</id><n>123</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>24</value><value>65</value></coordinates><elapsed>35</elapsed><player2>30871</player2><subtype>volley</subtype><player1>40139</player1><sortorder>2</sortorder><team>9906</team><id>4460117</id><n>145</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>288</event_incident_typefk><coordinates><value>20</value><value>6</value></coordinates><elapsed>63</elapsed><subtype>deflected</subtype><player1>43329</player1><sortorder>2</sortorder><team>8581</team><id>4460369</id><n>276</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>64</value></coordinates><elapsed>80</elapsed><player2>184533</player2><subtype>header</subtype><player1>30853</player1><sortorder>2</sortorder><team>9906</team><id>4460436</id><n>314</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>23</elapsed><player1>33992</player1><sortorder>0</sortorder><team>8634</team><id>2325230</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>391</event_incident_typefk><elapsed>34</elapsed><player2>30631</player2><subtype>loose_ball</subtype><player1>30679</player1><sortorder>2</sortorder><team>8455</team><id>1137744</id><n>232</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>48</elapsed><player2>32345</player2><subtype>shot</subtype><player1>37804</player1><sortorder>1</sortorder><team>8455</team><id>1137836</id><n>240</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>52</elapsed><player2>30822</player2><subtype>header</subtype><player1>37804</player1><sortorder>2</sortorder><team>8455</team><id>1137847</id><n>251</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>304</event_incident_typefk><elapsed>62</elapsed><subtype>loose_ball</subtype><player1>18859</player1><sortorder>3</sortorder><team>8528</team><id>1137886</id><n>137</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>78</elapsed><player2>30822</player2><subtype>shot</subtype><player1>31906</player1><sortorder>2</sortorder><team>8455</team><id>1137961</id><n>273</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>90</elapsed><player2>30822</player2><subtype>header</subtype><player1>31906</player1><sortorder>1</sortorder><team>8455</team><id>1138025</id><n>279</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>4</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>30856</player2><subtype>shot</subtype><player1>24800</player1><sortorder>0</sortorder><team>8455</team><id>1138040</id><n>280</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>25</elapsed><player1>26472</player1><sortorder>0</sortorder><team>9788</team><id>611179</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>29257</player1><sortorder>0</sortorder><team>9788</team><id>611444</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>64</elapsed><player1>36395</player1><sortorder>0</sortorder><team>8722</team><id>611918</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>67</elapsed><player1>31936</player1><sortorder>0</sortorder><team>9788</team><id>611923</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>82</elapsed><player1>36395</player1><sortorder>0</sortorder><team>8722</team><id>612108</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>87</elapsed><player1>26472</player1><sortorder>0</sortorder><team>9788</team><id>612184</id><n>28</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>33</value><value>60</value></coordinates><elapsed>33</elapsed><player2>254308</player2><subtype>shot</subtype><player1>25496</player1><sortorder>1</sortorder><team>8592</team><id>3981993</id><n>119</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>37</elapsed><player1>154280</player1><sortorder>1</sortorder><team>8689</team><id>3982021</id><n>131</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>28</value><value>66</value></coordinates><elapsed>49</elapsed><player2>166020</player2><subtype>tap_in</subtype><player1>210184</player1><sortorder>5</sortorder><team>9941</team><id>5502121</id><n>763</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>39</event_incident_typefk><coordinates><value>22</value><value>12</value></coordinates><elapsed>90</elapsed><subtype>distance</subtype><player1>143750</player1><sortorder>7</sortorder><team>8689</team><id>5502921</id><n>717</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>20</elapsed><player2>30907</player2><subtype>header</subtype><player1>42369</player1><sortorder>4</sortorder><team>8371</team><id>555321</id><n>303</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>299</event_incident_typefk><elapsed>37</elapsed><subtype>header</subtype><player1>30962</player1><sortorder>2</sortorder><team>8633</team><id>555417</id><n>135</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>50</elapsed><subtype>distance</subtype><player1>30962</player1><sortorder>2</sortorder><team>8633</team><id>555535</id><n>330</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>64</elapsed><player2>30834</player2><subtype>shot</subtype><player1>25759</player1><sortorder>1</sortorder><team>8633</team><id>555610</id><n>343</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>80</event_incident_typefk><elapsed>90</elapsed><subtype>shot</subtype><player1>30834</player1><sortorder>1</sortorder><team>8633</team><id>555793</id><n>374</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>22</elapsed><player1>106292</player1><sortorder>0</sortorder><team>9830</team><id>3113370</id><n>15</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>74838</player1><sortorder>0</sortorder><team>10249</team><id>3113708</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>8</elapsed><player1>33028</player1><sortorder>0</sortorder><team>8315</team><id>2761779</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player1>33030</player1><sortorder>0</sortorder><team>8315</team><id>2762150</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>81</elapsed><player1>41157</player1><sortorder>0</sortorder><team>8661</team><id>2762185</id><n>35</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>23</value><value>64</value></coordinates><elapsed>36</elapsed><player2>304856</player2><subtype>header</subtype><player1>352887</player1><sortorder>3</sortorder><team>9851</team><id>4214154</id><n>214</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>35</elapsed><player2>24225</player2><subtype>volley</subtype><player1>35411</player1><sortorder>1</sortorder><team>10261</team><id>2443306</id><n>230</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>55</elapsed><player2>24737</player2><subtype>header</subtype><player1>181276</player1><sortorder>2</sortorder><team>8659</team><id>2443603</id><n>247</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>395</event_incident_typefk><elapsed>90</elapsed><player2>264840</player2><player1>46700</player1><sortorder>5</sortorder><team>10261</team><id>2444056</id><n>292</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>27</value><value>63</value></coordinates><elapsed>44</elapsed><player2>115847</player2><subtype>volley</subtype><player1>26330</player1><sortorder>1</sortorder><team>9904</team><id>3920373</id><n>147</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><event_incident_typefk>393</event_incident_typefk><elapsed>56</elapsed><subtype>shot</subtype><del>1</del><sortorder>2</sortorder><n>200</n><type>goal</type><id>3920493</id></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><coordinates><value>27</value><value>64</value></coordinates><elapsed>56</elapsed><subtype>shot</subtype><player1>115847</player1><sortorder>3</sortorder><team>9904</team><id>3920502</id><n>353</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>61</value></coordinates><elapsed>76</elapsed><player2>260470</player2><subtype>shot</subtype><player1>115847</player1><sortorder>2</sortorder><team>9904</team><id>3920644</id><n>277</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>npm</comment><event_incident_typefk>23</event_incident_typefk><elapsed>74</elapsed><subtype>post</subtype><player1>27734</player1><sortorder>1</sortorder><team>8600</team><id>1567933</id><n>213</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>64</elapsed><player2>109298</player2><player1>248453</player1><sortorder>0</sortorder><team>9885</team><id>3402931</id><n>15</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>28</elapsed><player1>193177</player1><sortorder>0</sortorder><team>8277</team><id>4162684</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player2>155639</player2><player1>303059</player1><sortorder>0</sortorder><team>8277</team><id>4162929</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>22</elapsed><player1>30272</player1><sortorder>0</sortorder><team>9911</team><id>404225</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>26</elapsed><player1>27607</player1><sortorder>0</sortorder><team>9911</team><id>404252</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>4</elapsed><player1>31725</player1><sortorder>0</sortorder><team>8535</team><id>1004449</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>73</elapsed><player1>30881</player1><sortorder>0</sortorder><team>8535</team><id>1005067</id><n>28</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>86</elapsed><player1>184629</player1><sortorder>0</sortorder><team>8535</team><id>1005174</id><n>29</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>21</elapsed><player1>12245</player1><sortorder>0</sortorder><team>8350</team><id>1453094</id><n>12</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>33</elapsed><player1>12245</player1><sortorder>0</sortorder><team>8350</team><id>1453106</id><n>13</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>42971</player1><sortorder>0</sortorder><team>8350</team><id>1453336</id><n>14</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><elapsed>40</elapsed><subtype>saved_back_into_play</subtype><player1>49677</player1><sortorder>0</sortorder><team>9875</team><id>1975400</id><n>107</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>649</event_incident_typefk><elapsed>40</elapsed><subtype>tap_in</subtype><player1>49677</player1><sortorder>1</sortorder><team>9875</team><id>1975401</id><n>247</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>649</event_incident_typefk><elapsed>77</elapsed><subtype>tap_in</subtype><player1>30906</player1><sortorder>3</sortorder><team>10167</team><id>1975587</id><n>291</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>86</elapsed><player2>49677</player2><subtype>shot</subtype><player1>18925</player1><sortorder>1</sortorder><team>9875</team><id>1975641</id><n>304</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>64</value></coordinates><elapsed>24</elapsed><player2>101042</player2><subtype>header</subtype><player1>17855</player1><sortorder>1</sortorder><team>10217</team><id>5068422</id><n>162</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>21</value><value>4</value></coordinates><elapsed>49</elapsed><player1>212370</player1><sortorder>5</sortorder><team>10217</team><id>5069298</id><n>793</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>6</elapsed_plus><event_incident_typefk>721</event_incident_typefk><coordinates><value>24</value><value>3</value></coordinates><elapsed>90</elapsed><player2>179239</player2><subtype>tap_in</subtype><player1>143512</player1><sortorder>21</sortorder><team>8674</team><id>5070357</id><n>784</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>10</elapsed><player1>27690</player1><sortorder>0</sortorder><team>9804</team><id>659716</id><n>15</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>33</elapsed><player2>77704</player2><subtype>header</subtype><player1>38567</player1><sortorder>1</sortorder><team>8658</team><id>1214278</id><n>216</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>41</elapsed><player1>26181</player1><sortorder>0</sortorder><team>9825</team><id>1214386</id><n>227</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>47</elapsed><player2>143793</player2><subtype>shot</subtype><player1>25537</player1><sortorder>1</sortorder><team>9825</team><id>1214595</id><n>236</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>22</elapsed><player2>31921</player2><player1>30893</player1><sortorder>0</sortorder><team>8633</team><id>3322834</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>20</value><value>64</value></coordinates><elapsed>25</elapsed><player2>361315</player2><subtype>header</subtype><player1>194165</player1><sortorder>0</sortorder><team>8586</team><id>4511174</id><n>102</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>26</value><value>64</value></coordinates><elapsed>36</elapsed><player2>181297</player2><subtype>header</subtype><player1>33024</player1><sortorder>4</sortorder><team>8315</team><id>4219650</id><n>230</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>9</elapsed><player1>210390</player1><sortorder>0</sortorder><team>9851</team><id>2913244</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>154232</player1><sortorder>0</sortorder><team>9837</team><id>2913305</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>84</elapsed><player1>26374</player1><sortorder>0</sortorder><team>9851</team><id>2913432</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>19</elapsed><subtype>direct_freekick</subtype><player1>171992</player1><sortorder>0</sortorder><team>9906</team><id>1523791</id><n>303</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>39</elapsed><player1>41622</player1><sortorder>1</sortorder><team>8581</team><id>1523901</id><n>268</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>50</elapsed><subtype>shot</subtype><player1>37412</player1><sortorder>3</sortorder><team>9906</team><id>1523957</id><n>267</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>70</elapsed><player1>37412</player1><sortorder>0</sortorder><team>9906</team><id>1524001</id><n>348</n><type>goal</type><goal_type>p</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>84</elapsed><player1>33753</player1><sortorder>1</sortorder><team>8581</team><id>1524033</id><n>349</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>25</value><value>3</value></coordinates><elapsed>47</elapsed><player2>26111</player2><subtype>tap_in</subtype><player1>246575</player1><sortorder>1</sortorder><team>8456</team><id>4719409</id><n>300</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>34</value><value>6</value></coordinates><elapsed>56</elapsed><player2>37459</player2><subtype>shot</subtype><player1>40196</player1><sortorder>2</sortorder><team>8456</team><id>4719653</id><n>363</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>23</value><value>53</value></coordinates><elapsed>18</elapsed><subtype>direct_freekick</subtype><player1>94915</player1><sortorder>0</sortorder><team>9905</team><id>5539115</id><n>119</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>5</value></coordinates><elapsed>28</elapsed><player2>27155</player2><subtype>shot</subtype><player1>27475</player1><sortorder>5</sortorder><team>9810</team><id>5539197</id><n>174</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>17</value><value>7</value></coordinates><elapsed>85</elapsed><player1>193901</player1><sortorder>1</sortorder><team>9905</team><id>5540174</id><n>487</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>dg</comment><event_incident_typefk>299</event_incident_typefk><elapsed>19</elapsed><subtype>header</subtype><player1>40636</player1><sortorder>2</sortorder><team>8650</team><id>3197147</id><n>36</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>36</elapsed><player2>184536</player2><subtype>header</subtype><player1>25984</player1><sortorder>1</sortorder><team>8650</team><id>3197450</id><n>177</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>50</elapsed><subtype>direct_freekick</subtype><player1>40636</player1><sortorder>0</sortorder><team>8650</team><id>3197751</id><n>186</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player2>282713</player2><player1>179795</player1><sortorder>0</sortorder><team>7878</team><id>3384558</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>11</elapsed><player1>178142</player1><sortorder>0</sortorder><team>7896</team><id>5532567</id><n>7</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>47</elapsed><player1>38601</player1><sortorder>0</sortorder><team>10179</team><id>5532955</id><n>15</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>85</elapsed><player1>38601</player1><sortorder>0</sortorder><team>10179</team><id>5533243</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>88</elapsed><player1>38601</player1><sortorder>0</sortorder><team>10179</team><id>5533262</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>40</elapsed><player1>188498</player1><sortorder>0</sortorder><team>8358</team><id>2424560</id><n>18</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>85</elapsed><player1>36771</player1><sortorder>0</sortorder><team>8358</team><id>2425346</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>25</value><value>7</value></coordinates><elapsed>39</elapsed><player2>111930</player2><subtype>header</subtype><player1>105548</player1><sortorder>1</sortorder><team>8667</team><id>3730393</id><n>276</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>299</event_incident_typefk><coordinates><value>22</value><value>5</value></coordinates><elapsed>44</elapsed><subtype>header</subtype><player1>8922</player1><sortorder>3</sortorder><team>8667</team><id>3730412</id><n>147</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>19</value><value>54</value></coordinates><elapsed>50</elapsed><player2>30892</player2><subtype>distance</subtype><player1>195927</player1><sortorder>4</sortorder><team>8654</team><id>3730535</id><n>285</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>22</value><value>10</value></coordinates><elapsed>64</elapsed><subtype>shot</subtype><player1>40015</player1><sortorder>2</sortorder><team>8667</team><id>3730664</id><n>304</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>3</value></coordinates><elapsed>67</elapsed><player2>30892</player2><subtype>shot</subtype><player1>192899</player1><sortorder>2</sortorder><team>8654</team><id>3730683</id><n>306</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>20</elapsed><player2>39719</player2><subtype>header</subtype><player1>41269</player1><sortorder>0</sortorder><team>8535</team><id>1554192</id><n>201</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>50</elapsed><player2>26214</player2><subtype>header</subtype><player1>190872</player1><sortorder>2</sortorder><team>9857</team><id>1554256</id><n>230</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>22</event_incident_typefk><elapsed>55</elapsed><subtype>missed</subtype><player1>32749</player1><sortorder>0</sortorder><team>9857</team><id>1554272</id><n>113</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>10</elapsed><player2>33863</player2><subtype>shot</subtype><player1>23264</player1><sortorder>4</sortorder><team>10252</team><id>856100</id><n>259</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>77</elapsed><subtype>shot</subtype><player1>24531</player1><sortorder>5</sortorder><team>8586</team><id>856629</id><n>338</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>22</value><value>16</value></coordinates><elapsed>44</elapsed><subtype>distance</subtype><player1>466143</player1><sortorder>7</sortorder><team>6391</team><id>4976847</id><n>434</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><coordinates><value>31</value><value>9</value></coordinates><elapsed>68</elapsed><player2>187666</player2><subtype>deflected</subtype><player1>466143</player1><sortorder>3</sortorder><team>6391</team><id>4977682</id><n>606</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>27</value><value>14</value></coordinates><elapsed>24</elapsed><player2>319300</player2><subtype>distance</subtype><player1>210466</player1><sortorder>1</sortorder><team>7819</team><id>3926902</id><n>115</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>19</value><value>65</value></coordinates><elapsed>40</elapsed><player2>261313</player2><subtype>header</subtype><player1>52265</player1><sortorder>1</sortorder><team>9830</team><id>3927201</id><n>211</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>16</value><value>64</value></coordinates><elapsed>60</elapsed><player2>562697</player2><subtype>shot</subtype><player1>261313</player1><sortorder>5</sortorder><team>9830</team><id>3927761</id><n>262</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player2>36326</player2><player1>29255</player1><sortorder>2</sortorder><team>9776</team><id>3279947</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>46</elapsed><player1>115847</player1><sortorder>0</sortorder><team>8165</team><id>3280310</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>47</elapsed><player2>194533</player2><player1>150292</player1><sortorder>0</sortorder><team>8165</team><id>3280319</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>63</elapsed><player1>177942</player1><sortorder>0</sortorder><team>9776</team><id>3280487</id><n>18</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>8</value><value>18</value></coordinates><elapsed>61</elapsed><player2>27663</player2><subtype>shot</subtype><player1>265924</player1><sortorder>1</sortorder><team>9880</team><id>4118250</id><n>310</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>23</value><value>6</value></coordinates><elapsed>77</elapsed><player1>362120</player1><sortorder>2</sortorder><team>8543</team><id>4118577</id><n>390</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><coordinates><value>18</value><value>57</value></coordinates><elapsed>87</elapsed><subtype>volley</subtype><player1>30638</player1><sortorder>1</sortorder><team>8543</team><id>4118775</id><n>430</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>393</event_incident_typefk><coordinates><value>28</value><value>64</value></coordinates><elapsed>90</elapsed><player2>72665</player2><subtype>shot</subtype><player1>303339</player1><sortorder>9</sortorder><team>8466</team><id>4135521</id><n>506</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><elapsed_plus>5</elapsed_plus><event_incident_typefk>346</event_incident_typefk><coordinates><value>25</value><value>3</value></coordinates><elapsed>90</elapsed><player1>24209</player1><sortorder>14</sortorder><team>10172</team><id>4135537</id><n>526</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>61</elapsed><player1>56686</player1><sortorder>0</sortorder><team>8661</team><id>881093</id><n>104</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player1>38098</player1><sortorder>0</sortorder><team>8592</team><id>2925198</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>67</elapsed><player1>25496</player1><sortorder>0</sortorder><team>8592</team><id>2925894</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>4</elapsed><player1>41309</player1><sortorder>0</sortorder><team>9875</team><id>695853</id><n>15</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>8</elapsed><player1>41309</player1><sortorder>0</sortorder><team>9875</team><id>695912</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>19</elapsed><player1>41328</player1><sortorder>0</sortorder><team>9875</team><id>696052</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><elapsed>26</elapsed><subtype>saved_back_into_play</subtype><player1>30743</player1><sortorder>0</sortorder><team>8564</team><id>512482</id><n>106</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>50</elapsed><subtype>distance</subtype><player1>32747</player1><sortorder>3</sortorder><team>8540</team><id>512655</id><n>281</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>59</elapsed><player2>31288</player2><subtype>header</subtype><player1>49677</player1><sortorder>2</sortorder><team>8540</team><id>512688</id><n>287</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>80</elapsed><player2>24622</player2><subtype>header</subtype><player1>33337</player1><sortorder>1</sortorder><team>8540</team><id>512769</id><n>318</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>83</elapsed><player1>30743</player1><sortorder>1</sortorder><team>8564</team><id>512782</id><n>322</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>15</elapsed><player1>39840</player1><sortorder>0</sortorder><team>9904</team><id>1598322</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>18</elapsed><player1>36011</player1><sortorder>0</sortorder><team>8226</team><id>1598323</id><n>20</n><type>goal</type><goal_type>p</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>30</elapsed><player1>29145</player1><sortorder>0</sortorder><team>9904</team><id>1598383</id><n>24</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>75</elapsed><player1>30362</player1><sortorder>2</sortorder><team>8472</team><id>3383067</id><n>411</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>14</elapsed><subtype>shot</subtype><player1>114971</player1><sortorder>6</sortorder><team>8586</team><id>3463660</id><n>179</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>35</elapsed><player1>139673</player1><sortorder>1</sortorder><team>10252</team><id>3464102</id><n>210</n><type>goal</type><goal_type>o</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>38</elapsed><player1>30960</player1><sortorder>2</sortorder><team>8586</team><id>3464161</id><n>206</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><coordinates><value>24</value><value>16</value></coordinates><elapsed>43</elapsed><player2>602211</player2><subtype>deflected</subtype><player1>46243</player1><sortorder>1</sortorder><team>7794</team><id>5582609</id><n>240</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>24</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>50</elapsed><subtype>crossbar</subtype><player1>41098</player1><sortorder>1</sortorder><team>8121</team><id>5582849</id><n>263</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>50</elapsed><player2>30255</player2><subtype>shot</subtype><player1>18576</player1><sortorder>1</sortorder><team>9789</team><id>1005121</id><n>184</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>61</elapsed><player2>35990</player2><subtype>shot</subtype><player1>18576</player1><sortorder>0</sortorder><team>9789</team><id>1005224</id><n>195</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>87</elapsed><subtype>shot</subtype><player1>37558</player1><sortorder>1</sortorder><team>9789</team><id>1005398</id><n>213</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>30</value><value>4</value></coordinates><elapsed>7</elapsed><player2>240054</player2><subtype>header</subtype><player1>394825</player1><sortorder>1</sortorder><team>8305</team><id>5414793</id><n>88</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>889</event_incident_typefk><coordinates><value>25</value><value>66</value></coordinates><elapsed>87</elapsed><player2>97762</player2><subtype>backheel</subtype><player1>200917</player1><sortorder>8</sortorder><team>8372</team><id>5415541</id><n>543</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>13</elapsed><player1>75447</player1><sortorder>0</sortorder><team>9823</team><id>2924247</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>4</value></coordinates><elapsed>12</elapsed><player2>129393</player2><subtype>shot</subtype><player1>210184</player1><sortorder>5</sortorder><team>9941</team><id>5121098</id><n>167</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>21</value><value>58</value></coordinates><elapsed>87</elapsed><player2>165583</player2><subtype>distance</subtype><player1>365672</player1><sortorder>11</sortorder><team>8639</team><id>5122625</id><n>706</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>50</elapsed><player1>37554</player1><sortorder>0</sortorder><team>10192</team><id>5336910</id><n>33</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>33</value><value>62</value></coordinates><elapsed>68</elapsed><subtype>shot</subtype><player1>473855</player1><sortorder>2</sortorder><team>8592</team><id>5243586</id><n>347</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>25</value><value>7</value></coordinates><elapsed>58</elapsed><player2>42873</player2><subtype>header</subtype><player1>25462</player1><sortorder>1</sortorder><team>8581</team><id>3959838</id><n>218</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>63</value></coordinates><elapsed>74</elapsed><player2>75310</player2><subtype>shot</subtype><player1>75307</player1><sortorder>0</sortorder><team>10267</team><id>3960057</id><n>263</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>35</value><value>14</value></coordinates><elapsed>74</elapsed><player2>287691</player2><subtype>distance</subtype><player1>477472</player1><sortorder>1</sortorder><team>8581</team><id>3960070</id><n>282</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>7</value></coordinates><elapsed>11</elapsed><player2>109121</player2><subtype>shot</subtype><player1>42437</player1><sortorder>8</sortorder><team>8533</team><id>4416088</id><n>94</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><coordinates><value>23</value><value>6</value></coordinates><elapsed>73</elapsed><subtype>shot</subtype><player1>109121</player1><sortorder>1</sortorder><team>8533</team><id>4417749</id><n>350</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>26</value><value>6</value></coordinates><elapsed>30</elapsed><player2>71605</player2><subtype>header</subtype><player1>238438</player1><sortorder>6</sortorder><team>8722</team><id>4695507</id><n>577</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>649</event_incident_typefk><coordinates><value>25</value><value>68</value></coordinates><elapsed>83</elapsed><subtype>tap_in</subtype><player1>36410</player1><sortorder>3</sortorder><team>8721</team><id>4696952</id><n>424</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>26</value><value>4</value></coordinates><elapsed>27</elapsed><player2>237542</player2><subtype>header</subtype><player1>68253</player1><sortorder>1</sortorder><team>10189</team><id>4908494</id><n>252</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>25</value><value>64</value></coordinates><elapsed>73</elapsed><player2>298823</player2><subtype>header</subtype><player1>31906</player1><sortorder>4</sortorder><team>8177</team><id>4910008</id><n>804</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>721</event_incident_typefk><coordinates><value>20</value><value>6</value></coordinates><elapsed>90</elapsed><player2>530859</player2><subtype>tap_in</subtype><player1>425963</player1><sortorder>10</sortorder><team>10189</team><id>4910533</id><n>1042</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>12</elapsed><player1>39273</player1><sortorder>0</sortorder><team>8533</team><id>2522543</id><n>20</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>26</elapsed><player1>41816</player1><sortorder>0</sortorder><team>9804</team><id>2522590</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>28</value><value>65</value></coordinates><elapsed>2</elapsed><player2>304455</player2><subtype>header</subtype><player1>277460</player1><sortorder>1</sortorder><team>8593</team><id>5428512</id><n>37</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>58</value></coordinates><elapsed>76</elapsed><player2>277460</player2><subtype>shot</subtype><player1>562267</player1><sortorder>0</sortorder><team>8593</team><id>5429746</id><n>464</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>7</elapsed><player1>27731</player1><sortorder>0</sortorder><team>8533</team><id>815735</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>81</elapsed><player1>30723</player1><sortorder>0</sortorder><team>8564</team><id>815909</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>30723</player1><sortorder>0</sortorder><team>8564</team><id>815940</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>19</value><value>64</value></coordinates><elapsed>43</elapsed><player2>309505</player2><subtype>header</subtype><player1>277460</player1><sortorder>3</sortorder><team>8593</team><id>5369024</id><n>368</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>19</value><value>52</value></coordinates><elapsed>52</elapsed><player2>39213</player2><subtype>distance</subtype><player1>467479</player1><sortorder>1</sortorder><team>8593</team><id>5369615</id><n>463</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><coordinates><value>20</value><value>65</value></coordinates><elapsed>60</elapsed><subtype>loose_ball</subtype><player1>39213</player1><sortorder>4</sortorder><team>8593</team><id>5369865</id><n>511</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><coordinates><value>24</value><value>64</value></coordinates><elapsed>65</elapsed><subtype>loose_ball</subtype><player1>298448</player1><sortorder>4</sortorder><team>8593</team><id>5369971</id><n>529</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>11</elapsed><player1>181276</player1><sortorder>3</sortorder><team>8668</team><id>5254270</id><n>101</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>23</value><value>64</value></coordinates><elapsed>28</elapsed><player2>160713</player2><subtype>header</subtype><player1>77690</player1><sortorder>2</sortorder><team>8668</team><id>5254700</id><n>234</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>23</value><value>59</value></coordinates><elapsed>42</elapsed><subtype>shot</subtype><player1>30895</player1><sortorder>2</sortorder><team>8668</team><id>5255086</id><n>391</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>2</elapsed><player1>42511</player1><sortorder>0</sortorder><team>9976</team><id>755273</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>39488</player1><sortorder>0</sortorder><team>8540</team><id>756035</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>14</elapsed><player1>38458</player1><sortorder>0</sortorder><team>8535</team><id>2458233</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>43</elapsed><player1>150388</player1><sortorder>0</sortorder><team>8529</team><id>2458472</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>50</elapsed><player1>92666</player1><sortorder>0</sortorder><team>8535</team><id>2458618</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>54</elapsed><player1>30709</player1><sortorder>0</sortorder><team>8535</team><id>2458633</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>84</elapsed><player1>155066</player1><sortorder>0</sortorder><team>8535</team><id>2458742</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>5</elapsed><player1>27692</player1><sortorder>0</sortorder><team>8636</team><id>2570735</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>23</elapsed><player1>42437</player1><sortorder>0</sortorder><team>9804</team><id>2570742</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>52</elapsed><player1>42437</player1><sortorder>0</sortorder><team>9804</team><id>2570760</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>67</elapsed><player1>30930</player1><sortorder>0</sortorder><team>8636</team><id>2570773</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><elapsed>44</elapsed><player2>40006</player2><subtype>deflected</subtype><player1>30840</player1><sortorder>0</sortorder><team>8586</team><id>1856565</id><n>214</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>84</elapsed><player2>89185</player2><subtype>shot</subtype><player1>23991</player1><sortorder>2</sortorder><team>10003</team><id>1857140</id><n>252</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>29</elapsed><player1>384376</player1><sortorder>0</sortorder><team>9931</team><id>5507523</id><n>47</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>47</elapsed><player1>413155</player1><sortorder>0</sortorder><team>10190</team><id>5508106</id><n>16</n><type>goal</type><goal_type>o</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>62</elapsed><player1>566785</player1><sortorder>0</sortorder><team>10190</team><id>5508322</id><n>46</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>64</elapsed><player1>25794</player1><sortorder>0</sortorder><team>9931</team><id>5508343</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>66</elapsed><player1>384376</player1><sortorder>0</sortorder><team>9931</team><id>5508379</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>73</elapsed><player1>527103</player1><sortorder>0</sortorder><team>9931</team><id>5508487</id><n>39</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>78</elapsed><player1>384376</player1><sortorder>0</sortorder><team>9931</team><id>5508531</id><n>41</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>81</elapsed><player2>38807</player2><subtype>shot</subtype><player1>24208</player1><sortorder>2</sortorder><team>8456</team><id>1299398</id><n>457</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>42183</player2><subtype>shot</subtype><player1>24773</player1><sortorder>2</sortorder><team>10194</team><id>1299586</id><n>450</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>20</value><value>63</value></coordinates><elapsed>17</elapsed><player2>231199</player2><subtype>header</subtype><player1>191788</player1><sortorder>3</sortorder><team>9851</team><id>4315406</id><n>82</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>18</value><value>62</value></coordinates><elapsed>43</elapsed><player2>304856</player2><subtype>header</subtype><player1>30457</player1><sortorder>3</sortorder><team>9851</team><id>4315873</id><n>226</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>31</value><value>61</value></coordinates><elapsed>50</elapsed><player2>231199</player2><subtype>shot</subtype><player1>352887</player1><sortorder>3</sortorder><team>9851</team><id>4316111</id><n>284</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>57</elapsed><player2>25773</player2><player1>151063</player1><sortorder>2</sortorder><team>8302</team><id>3282805</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>5</elapsed><player1>31235</player1><sortorder>0</sortorder><team>8721</team><id>2476305</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player1>31235</player1><sortorder>0</sortorder><team>8721</team><id>2476362</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>33</elapsed><player1>104045</player1><sortorder>0</sortorder><team>8721</team><id>2476486</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>31199</player1><sortorder>0</sortorder><team>8178</team><id>2476951</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>11</elapsed><player1>134222</player1><sortorder>0</sortorder><team>9874</team><id>1530757</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>14</elapsed><subtype>shot</subtype><player1>35990</player1><sortorder>1</sortorder><team>9905</team><id>1915451</id><n>210</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>59</elapsed><subtype>shot</subtype><player1>40176</player1><sortorder>1</sortorder><team>10189</team><id>1916228</id><n>253</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>38</elapsed><player2>33992</player2><subtype>shot</subtype><player1>75310</player1><sortorder>1</sortorder><team>8302</team><id>764637</id><n>323</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>69</elapsed><player2>101422</player2><subtype>distance</subtype><player1>33989</player1><sortorder>2</sortorder><team>8302</team><id>764953</id><n>375</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>48</elapsed><player1>109280</player1><sortorder>0</sortorder><team>9874</team><id>2762989</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>81</elapsed><player1>109280</player1><sortorder>0</sortorder><team>9874</team><id>2763035</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>15</value><value>56</value></coordinates><elapsed>14</elapsed><player2>317062</player2><subtype>distance</subtype><player1>41194</player1><sortorder>1</sortorder><team>4087</team><id>4080078</id><n>67</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>21</value><value>4</value></coordinates><elapsed>30</elapsed><player2>26852</player2><subtype>header</subtype><player1>52133</player1><sortorder>4</sortorder><team>9847</team><id>4080134</id><n>160</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>288</event_incident_typefk><coordinates><value>26</value><value>6</value></coordinates><elapsed>38</elapsed><subtype>deflected</subtype><player1>190972</player1><sortorder>2</sortorder><team>9847</team><id>4080175</id><n>190</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>28</value><value>65</value></coordinates><elapsed>63</elapsed><player1>109651</player1><sortorder>3</sortorder><team>9847</team><id>4080583</id><n>296</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>31</value><value>7</value></coordinates><elapsed>74</elapsed><player2>215299</player2><subtype>shot</subtype><player1>129391</player1><sortorder>2</sortorder><team>9847</team><id>4080756</id><n>462</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>18</value><value>3</value></coordinates><elapsed>89</elapsed><player2>35724</player2><subtype>tap_in</subtype><player1>49677</player1><sortorder>3</sortorder><team>9847</team><id>4081014</id><n>440</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>17</value><value>10</value></coordinates><elapsed>1</elapsed><subtype>shot</subtype><player1>692984</player1><sortorder>6</sortorder><team>9851</team><id>5371467</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>6</value></coordinates><elapsed>15</elapsed><player2>41189</player2><subtype>shot</subtype><player1>69541</player1><sortorder>4</sortorder><team>9851</team><id>5371671</id><n>137</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>9</value><value>20</value></coordinates><elapsed>23</elapsed><subtype>direct_freekick</subtype><player1>692984</player1><sortorder>2</sortorder><team>9851</team><id>5371788</id><n>198</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>9</value></coordinates><elapsed>45</elapsed><player2>79246</player2><subtype>shot</subtype><player1>692984</player1><sortorder>4</sortorder><team>9851</team><id>5372063</id><n>302</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>61</value></coordinates><elapsed>60</elapsed><player2>317062</player2><subtype>shot</subtype><player1>263276</player1><sortorder>1</sortorder><team>9830</team><id>5372429</id><n>400</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>10</elapsed><player1>41758</player1><sortorder>0</sortorder><team>10233</team><id>856944</id><n>232</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>53</elapsed><player2>41758</player2><subtype>shot</subtype><player1>41760</player1><sortorder>3</sortorder><team>10233</team><id>857195</id><n>294</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>75</elapsed><player1>41413</player1><sortorder>2</sortorder><team>10233</team><id>857282</id><n>316</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>26</elapsed><player1>37169</player1><sortorder>2</sortorder><team>8654</team><id>3346377</id><n>230</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>48</elapsed><subtype>direct_freekick</subtype><player1>24656</player1><sortorder>2</sortorder><team>8667</team><id>3346698</id><n>257</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>54</elapsed><player1>163200</player1><sortorder>0</sortorder><team>8667</team><id>3346726</id><n>263</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>28</elapsed><subtype>loose_ball</subtype><player1>30618</player1><sortorder>0</sortorder><team>8650</team><id>685085</id><n>251</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>63</elapsed><player2>30618</player2><subtype>distance</subtype><player1>37139</player1><sortorder>0</sortorder><team>8650</team><id>685592</id><n>284</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><elapsed>80</elapsed><subtype>shot</subtype><player1>26494</player1><sortorder>4</sortorder><team>8659</team><id>685727</id><n>180</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>28</elapsed><player1>37576</player1><sortorder>0</sortorder><team>9864</team><id>2348383</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>46</elapsed><player1>166111</player1><sortorder>0</sortorder><team>8581</team><id>2348782</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>59</elapsed><player1>37824</player1><sortorder>0</sortorder><team>9864</team><id>2348930</id><n>32</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>193226</player1><sortorder>0</sortorder><team>9864</team><id>2349548</id><n>31</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>64</elapsed><player2>110113</player2><player1>160906</player1><sortorder>0</sortorder><team>10218</team><id>3956128</id><n>11</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>67</elapsed><player1>186136</player1><sortorder>0</sortorder><team>8525</team><id>3956136</id><n>10</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>10</elapsed><player1>147951</player1><sortorder>0</sortorder><team>8540</team><id>2731380</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>7</elapsed><player1>41167</player1><sortorder>0</sortorder><team>9906</team><id>3447362</id><n>19</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>69</elapsed><player2>25462</player2><player1>41294</player1><sortorder>0</sortorder><team>8581</team><id>3448009</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>82</elapsed><player1>97752</player1><sortorder>0</sortorder><team>8165</team><id>2521098</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>88</elapsed><player1>107920</player1><sortorder>0</sortorder><team>8697</team><id>2521107</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>13</elapsed><player1>19674</player1><sortorder>0</sortorder><team>8398</team><id>421990</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>28</elapsed><player1>107929</player1><sortorder>0</sortorder><team>9869</team><id>1765484</id><n>22</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>30</elapsed><player1>41294</player1><sortorder>0</sortorder><team>9869</team><id>1765560</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>43</elapsed><player1>41294</player1><sortorder>0</sortorder><team>9869</team><id>1765819</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>40958</player1><sortorder>0</sortorder><team>8394</team><id>1766489</id><n>31</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>14</elapsed><player1>37087</player1><sortorder>0</sortorder><team>9810</team><id>3144610</id><n>22</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>18</elapsed><player1>171698</player1><sortorder>0</sortorder><team>10189</team><id>3144614</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player1>37087</player1><sortorder>0</sortorder><team>9810</team><id>3145114</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>61</elapsed><player1>172321</player1><sortorder>0</sortorder><team>9810</team><id>3145174</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>68</elapsed><player1>172321</player1><sortorder>0</sortorder><team>9810</team><id>3145198</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>86</elapsed><player1>68253</player1><sortorder>0</sortorder><team>10189</team><id>3145382</id><n>31</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>4</value></coordinates><elapsed>27</elapsed><player2>30889</player2><subtype>header</subtype><player1>46875</player1><sortorder>3</sortorder><team>9823</team><id>4670625</id><n>126</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>25</value><value>8</value></coordinates><elapsed>53</elapsed><subtype>shot</subtype><player1>93447</player1><sortorder>2</sortorder><team>9823</team><id>4671035</id><n>268</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>27</value><value>4</value></coordinates><elapsed>69</elapsed><player2>156726</player2><subtype>header</subtype><player1>116772</player1><sortorder>2</sortorder><team>9823</team><id>4671169</id><n>334</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>5</value></coordinates><elapsed>73</elapsed><player2>93447</player2><subtype>shot</subtype><player1>116772</player1><sortorder>2</sortorder><team>9823</team><id>4671212</id><n>359</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>30</value><value>10</value></coordinates><elapsed>87</elapsed><player2>27303</player2><subtype>shot</subtype><player1>156726</player1><sortorder>1</sortorder><team>9823</team><id>4671356</id><n>420</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>28</elapsed><player1>240837</player1><sortorder>0</sortorder><team>8358</team><id>2651431</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>41</elapsed><player1>93447</player1><sortorder>0</sortorder><team>9789</team><id>2651508</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>27365</player1><sortorder>0</sortorder><team>9789</team><id>2651537</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>93447</player1><sortorder>0</sortorder><team>9789</team><id>2651566</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>72</elapsed><player1>27365</player1><sortorder>0</sortorder><team>9789</team><id>2651854</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>78</elapsed><player1>260470</player1><sortorder>0</sortorder><team>9789</team><id>2651908</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><elapsed>61</elapsed><subtype>shot</subtype><player1>26165</player1><sortorder>1</sortorder><team>10252</team><id>913976</id><n>180</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>18</elapsed><player1>37576</player1><sortorder>0</sortorder><team>9864</team><id>2605228</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>17</elapsed><player2>24411</player2><subtype>volley</subtype><player1>30830</player1><sortorder>4</sortorder><team>10194</team><id>1858195</id><n>222</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>45</elapsed><player2>24773</player2><subtype>shot</subtype><player1>30830</player1><sortorder>3</sortorder><team>10194</team><id>1858412</id><n>252</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>70</elapsed><player2>24160</player2><subtype>shot</subtype><player1>32465</player1><sortorder>0</sortorder><team>8655</team><id>1858627</id><n>274</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>87</elapsed><player2>24006</player2><subtype>header</subtype><player1>30735</player1><sortorder>3</sortorder><team>8668</team><id>466744</id><n>323</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>21</value><value>7</value></coordinates><elapsed>8</elapsed><player2>166917</player2><subtype>header</subtype><player1>71602</player1><sortorder>4</sortorder><team>9747</team><id>3877423</id><n>38</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>29</value><value>55</value></coordinates><elapsed>12</elapsed><subtype>direct_freekick</subtype><player1>174062</player1><sortorder>0</sortorder><team>9831</team><id>3877467</id><n>45</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>62</value></coordinates><elapsed>26</elapsed><player2>33128</player2><subtype>shot</subtype><player1>174062</player1><sortorder>2</sortorder><team>9831</team><id>3877706</id><n>114</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>15</value><value>68</value></coordinates><elapsed>43</elapsed><player2>210406</player2><subtype>shot</subtype><player1>174062</player1><sortorder>6</sortorder><team>9831</team><id>3877972</id><n>170</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>80</event_incident_typefk><coordinates><value>22</value><value>60</value></coordinates><elapsed>45</elapsed><subtype>shot</subtype><player1>294859</player1><sortorder>4</sortorder><team>9831</team><id>3878031</id><n>186</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>63</value></coordinates><elapsed>50</elapsed><player2>294859</player2><subtype>shot</subtype><player1>174062</player1><sortorder>1</sortorder><team>9831</team><id>3878238</id><n>212</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>60</value></coordinates><elapsed>65</elapsed><player2>410160</player2><subtype>shot</subtype><player1>174062</player1><sortorder>2</sortorder><team>9831</team><id>3878593</id><n>262</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>7</value></coordinates><elapsed>70</elapsed><player2>71602</player2><subtype>shot</subtype><player1>45400</player1><sortorder>1</sortorder><team>9747</team><id>3878707</id><n>284</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>63</value></coordinates><elapsed>72</elapsed><player2>294859</player2><subtype>shot</subtype><player1>210406</player1><sortorder>5</sortorder><team>9831</team><id>3878767</id><n>298</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>8</elapsed><player2>182223</player2><subtype>distance</subtype><player1>30503</player1><sortorder>1</sortorder><team>10252</team><id>2504183</id><n>234</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>18</elapsed><player2>192807</player2><subtype>header</subtype><player1>32084</player1><sortorder>3</sortorder><team>10172</team><id>2504319</id><n>249</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>299</event_incident_typefk><elapsed>20</elapsed><subtype>header</subtype><player1>148315</player1><sortorder>0</sortorder><team>10252</team><id>2504344</id><n>58</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>7</elapsed><player2>122047</player2><player1>94010</player1><sortorder>0</sortorder><team>9827</team><id>3313665</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player2>26330</player2><player1>41360</player1><sortorder>0</sortorder><team>9748</team><id>3313816</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player2>182923</player2><player1>473852</player1><sortorder>2</sortorder><team>9748</team><id>3313823</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><elapsed>67</elapsed><player1>34035</player1><sortorder>2</sortorder><team>9931</team><id>5429267</id><n>24</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>12</elapsed><player2>30549</player2><subtype>shot</subtype><player1>26852</player1><sortorder>1</sortorder><team>10233</team><id>581098</id><n>187</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>39</elapsed><player2>27684</player2><subtype>shot</subtype><player1>41413</player1><sortorder>0</sortorder><team>10233</team><id>581203</id><n>249</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>56</elapsed><player1>30549</player1><sortorder>2</sortorder><team>10233</team><id>581390</id><n>205</n><type>goal</type><goal_type>p</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>60</elapsed><player1>39311</player1><sortorder>0</sortorder><team>8535</team><id>581414</id><n>246</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>81</elapsed><subtype>direct_freekick</subtype><player1>39311</player1><sortorder>1</sortorder><team>8535</team><id>581543</id><n>279</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>4</elapsed_plus><event_incident_typefk>80</event_incident_typefk><elapsed>90</elapsed><subtype>shot</subtype><player1>39311</player1><sortorder>0</sortorder><team>8535</team><id>581632</id><n>267</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>5</elapsed><player1>36084</player1><sortorder>0</sortorder><team>8226</team><id>416523</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>25</elapsed><player1>36011</player1><sortorder>0</sortorder><team>8226</team><id>416877</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>47</elapsed><player1>36084</player1><sortorder>0</sortorder><team>8226</team><id>417449</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>67</elapsed><player1>78990</player1><sortorder>0</sortorder><team>8226</team><id>417569</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>20396</player1><sortorder>0</sortorder><team>9789</team><id>417803</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>51</elapsed><player2>19243</player2><subtype>shot</subtype><player1>18784</player1><sortorder>2</sortorder><team>8370</team><id>2000329</id><n>249</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>78</elapsed><player2>75004</player2><subtype>header</subtype><player1>19243</player1><sortorder>1</sortorder><team>8370</team><id>2000376</id><n>252</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>75004</player2><subtype>shot</subtype><player1>32764</player1><sortorder>4</sortorder><team>8370</team><id>2000405</id><n>211</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>62</value></coordinates><elapsed>24</elapsed><player2>359197</player2><subtype>shot</subtype><player1>294003</player1><sortorder>3</sortorder><team>10205</team><id>3979004</id><n>78</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>32</value><value>68</value></coordinates><elapsed>70</elapsed><player2>189101</player2><subtype>volley</subtype><player1>38044</player1><sortorder>3</sortorder><team>10205</team><id>3979497</id><n>278</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>7</value></coordinates><elapsed>63</elapsed><player2>242709</player2><subtype>shot</subtype><player1>148315</player1><sortorder>4</sortorder><team>8650</team><id>5132643</id><n>1169</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>9</elapsed><player2>23354</player2><subtype>shot</subtype><player1>30357</player1><sortorder>2</sortorder><team>10252</team><id>1147768</id><n>290</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>52</elapsed><player2>25594</player2><subtype>shot</subtype><player1>21446</player1><sortorder>0</sortorder><team>8543</team><id>1221019</id><n>156</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>62</elapsed><player2>25594</player2><subtype>shot</subtype><player1>27657</player1><sortorder>0</sortorder><team>8543</team><id>1221030</id><n>170</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>11</value></coordinates><elapsed>58</elapsed><player2>167065</player2><subtype>shot</subtype><player1>28480</player1><sortorder>1</sortorder><team>8721</team><id>3818159</id><n>257</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>82</elapsed><player1>35112</player1><sortorder>0</sortorder><team>8721</team><id>1373714</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>dg</comment><event_incident_typefk>346</event_incident_typefk><coordinates><value>24</value><value>5</value></coordinates><elapsed>60</elapsed><player1>28901</player1><sortorder>0</sortorder><team>9826</team><id>4697251</id><n>595</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>29</value><value>7</value></coordinates><elapsed>71</elapsed><player2>35345</player2><subtype>header</subtype><player1>23837</player1><sortorder>1</sortorder><team>9826</team><id>4697464</id><n>451</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>20</value><value>67</value></coordinates><elapsed>77</elapsed><player1>183519</player1><sortorder>3</sortorder><team>9826</team><id>4697534</id><n>482</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>8</value></coordinates><elapsed>87</elapsed><player2>23837</player2><subtype>shot</subtype><player1>46417</player1><sortorder>5</sortorder><team>9826</team><id>4697709</id><n>585</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player1>147951</player1><sortorder>0</sortorder><team>8535</team><id>3251711</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>86</elapsed><player2>47373</player2><player1>206793</player1><sortorder>0</sortorder><team>8535</team><id>3252123</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>22</value><value>64</value></coordinates><elapsed>48</elapsed><player2>269806</player2><subtype>header</subtype><player1>7604</player1><sortorder>3</sortorder><team>9803</team><id>5423529</id><n>346</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>6</value></coordinates><elapsed>76</elapsed><player2>423058</player2><subtype>shot</subtype><player1>208672</player1><sortorder>8</sortorder><team>8588</team><id>4260676</id><n>548</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>25347</player1><sortorder>0</sortorder><team>10281</team><id>2299482</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>8</value></coordinates><elapsed>34</elapsed><player2>157729</player2><subtype>shot</subtype><player1>143365</player1><sortorder>2</sortorder><team>10003</team><id>3871110</id><n>78</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>6</value></coordinates><elapsed>57</elapsed><player2>52563</player2><subtype>shot</subtype><player1>143365</player1><sortorder>3</sortorder><team>10003</team><id>3871551</id><n>145</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>22</value><value>64</value></coordinates><elapsed>7</elapsed><player2>198566</player2><subtype>header</subtype><player1>51953</player1><sortorder>1</sortorder><team>9783</team><id>4774539</id><n>51</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>6</value></coordinates><elapsed>27</elapsed><player2>186121</player2><subtype>shot</subtype><player1>482331</player1><sortorder>4</sortorder><team>8370</team><id>4774771</id><n>293</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>25</value><value>62</value></coordinates><elapsed>28</elapsed><subtype>shot</subtype><player1>198566</player1><sortorder>5</sortorder><team>9783</team><id>4774778</id><n>296</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>62</value></coordinates><elapsed>61</elapsed><player2>40668</player2><subtype>shot</subtype><player1>194660</player1><sortorder>3</sortorder><team>9783</team><id>4775222</id><n>401</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>9</elapsed><player1>174472</player1><sortorder>0</sortorder><team>9910</team><id>2544822</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>12</elapsed><player1>41168</player1><sortorder>0</sortorder><team>10281</team><id>2544823</id><n>28</n><type>goal</type><goal_type>p</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>39</elapsed><player1>174472</player1><sortorder>0</sortorder><team>9910</team><id>2544826</id><n>24</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>52</elapsed><player1>205034</player1><sortorder>0</sortorder><team>9910</team><id>2544844</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>13</elapsed><player2>30714</player2><subtype>header</subtype><player1>41023</player1><sortorder>2</sortorder><team>8686</team><id>1919457</id><n>188</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>41</elapsed><player2>96398</player2><subtype>shot</subtype><player1>184822</player1><sortorder>1</sortorder><team>8686</team><id>1919684</id><n>225</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>49</elapsed><player2>41023</player2><subtype>shot</subtype><player1>184822</player1><sortorder>1</sortorder><team>8686</team><id>1919887</id><n>230</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>89</elapsed><player2>305138</player2><subtype>shot</subtype><player1>96643</player1><sortorder>1</sortorder><team>8686</team><id>1920281</id><n>239</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>38</elapsed><player1>161291</player1><sortorder>0</sortorder><team>7878</team><id>2929140</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>40004</player1><sortorder>0</sortorder><team>7878</team><id>2929168</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>58</elapsed><player1>33870</player1><sortorder>0</sortorder><team>8371</team><id>2929249</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>67</elapsed><player1>96540</player1><sortorder>0</sortorder><team>10167</team><id>2101413</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>78</elapsed><player1>40621</player1><sortorder>0</sortorder><team>10167</team><id>2101583</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>83</elapsed><player1>144999</player1><sortorder>0</sortorder><team>9888</team><id>2101638</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>64</elapsed><player1>39211</player1><sortorder>0</sortorder><team>9804</team><id>576371</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>83</elapsed><player1>42581</player1><sortorder>0</sortorder><team>8533</team><id>576528</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>20</value><value>17</value></coordinates><elapsed>28</elapsed><subtype>direct_freekick</subtype><player1>41194</player1><sortorder>1</sortorder><team>4087</team><id>3994724</id><n>78</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><coordinates><value>21</value><value>67</value></coordinates><elapsed>63</elapsed><subtype>loose_ball</subtype><player1>319822</player1><sortorder>1</sortorder><team>9748</team><id>3995231</id><n>203</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>25</value><value>5</value></coordinates><elapsed>64</elapsed><player2>40558</player2><subtype>tap_in</subtype><player1>41194</player1><sortorder>2</sortorder><team>4087</team><id>3995242</id><n>214</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>35</value><value>61</value></coordinates><elapsed>81</elapsed><player2>210120</player2><subtype>shot</subtype><player1>169193</player1><sortorder>3</sortorder><team>9748</team><id>3995508</id><n>265</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><elapsed_plus>4</elapsed_plus><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>90</elapsed><player1>169193</player1><sortorder>13</sortorder><team>9748</team><id>3995729</id><n>319</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>36</elapsed><player2>38433</player2><subtype>header</subtype><player1>33607</player1><sortorder>2</sortorder><team>8661</team><id>1054661</id><n>211</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>80</event_incident_typefk><elapsed>90</elapsed><subtype>shot</subtype><player1>41718</player1><sortorder>0</sortorder><team>8661</team><id>1054915</id><n>259</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>31</elapsed><player2>71353</player2><subtype>header</subtype><player1>25948</player1><sortorder>1</sortorder><team>9788</team><id>446523</id><n>243</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>55</elapsed><subtype>shot</subtype><player1>36051</player1><sortorder>7</sortorder><team>9911</team><id>446583</id><n>270</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>78</elapsed><player2>43061</player2><subtype>header</subtype><player1>96209</player1><sortorder>0</sortorder><team>9911</team><id>446637</id><n>297</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>80</elapsed><player2>71353</player2><subtype>header</subtype><player1>38167</player1><sortorder>0</sortorder><team>9788</team><id>446641</id><n>308</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>390</event_incident_typefk><elapsed>28</elapsed><player2>24208</player2><subtype>bicycle_kick</subtype><player1>108808</player1><sortorder>32</sortorder><team>8456</team><id>1709339</id><n>260</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>47</elapsed><player2>36615</player2><subtype>shot</subtype><player1>24159</player1><sortorder>22</sortorder><team>8456</team><id>1709716</id><n>292</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>52</elapsed><player2>24159</player2><subtype>header</subtype><player1>39027</player1><sortorder>33</sortorder><team>8456</team><id>1709807</id><n>276</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>65</elapsed><player2>29581</player2><subtype>shot</subtype><player1>24136</player1><sortorder>33</sortorder><team>10252</team><id>1710015</id><n>281</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>71</elapsed><player2>23782</player2><subtype>shot</subtype><player1>38807</player1><sortorder>44</sortorder><team>8456</team><id>1710138</id><n>283</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>53</elapsed><player1>154280</player1><sortorder>0</sortorder><team>8592</team><id>2354062</id><n>15</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>6</elapsed><player1>27415</player1><sortorder>0</sortorder><team>9905</team><id>2632524</id><n>22</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>41</elapsed><player1>30753</player1><sortorder>0</sortorder><team>9905</team><id>2632639</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>34</elapsed><player1>143365</player1><sortorder>0</sortorder><team>10003</team><id>3852674</id><n>312</n><type>goal</type><goal_type>p</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>43</elapsed><player1>39109</player1><sortorder>0</sortorder><team>10194</team><id>3852792</id><n>327</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>25</value><value>7</value></coordinates><elapsed>76</elapsed><player2>95434</player2><subtype>header</subtype><player1>33881</player1><sortorder>1</sortorder><team>10194</team><id>3853340</id><n>355</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>20</elapsed><player2>3520</player2><subtype>shot</subtype><player1>26181</player1><sortorder>8</sortorder><team>9825</team><id>1235330</id><n>308</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>159</event_incident_typefk><elapsed>41</elapsed><subtype>saved</subtype><player1>30613</player1><sortorder>0</sortorder><team>9825</team><id>1235598</id><n>112</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>67</elapsed><subtype>shot</subtype><player1>23678</player1><sortorder>1</sortorder><team>9825</team><id>1236016</id><n>357</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>87</elapsed><player2>26181</player2><subtype>shot</subtype><player1>36410</player1><sortorder>7</sortorder><team>9825</team><id>1236236</id><n>383</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>31</value><value>16</value></coordinates><elapsed>19</elapsed><subtype>distance</subtype><player1>149855</player1><sortorder>2</sortorder><team>8466</team><id>5133648</id><n>90</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>299</event_incident_typefk><coordinates><value>26</value><value>6</value></coordinates><elapsed>50</elapsed><subtype>header</subtype><player1>209405</player1><sortorder>2</sortorder><team>8466</team><id>5133714</id><n>208</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>20</value><value>4</value></coordinates><elapsed>55</elapsed><player2>303339</player2><subtype>tap_in</subtype><player1>23293</player1><sortorder>3</sortorder><team>8466</team><id>5133727</id><n>235</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>25</value><value>3</value></coordinates><elapsed>69</elapsed><player2>46010</player2><subtype>header</subtype><player1>26552</player1><sortorder>1</sortorder><team>8466</team><id>5133750</id><n>278</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>7</value></coordinates><elapsed>90</elapsed><player2>94267</player2><subtype>shot</subtype><player1>23293</player1><sortorder>5</sortorder><team>8466</team><id>5133806</id><n>394</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>24</elapsed><player1>23949</player1><sortorder>1</sortorder><team>8472</team><id>1128261</id><n>183</n><type>goal</type><goal_type>p</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>56</elapsed><player1>24226</player1><sortorder>0</sortorder><team>8658</team><id>1128844</id><n>205</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>78</elapsed><player2>35443</player2><subtype>header</subtype><player1>23837</player1><sortorder>0</sortorder><team>8658</team><id>1129209</id><n>224</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>88</elapsed><player2>35443</player2><subtype>header</subtype><player1>23787</player1><sortorder>2</sortorder><team>8658</team><id>1129357</id><n>238</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>39</elapsed><player1>31718</player1><sortorder>0</sortorder><team>10278</team><id>1303382</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>40</elapsed><player1>74734</player1><sortorder>0</sortorder><team>8581</team><id>1303383</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>30728</player1><sortorder>0</sortorder><team>10278</team><id>1303606</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>67</elapsed><player1>31718</player1><sortorder>0</sortorder><team>10278</team><id>1303638</id><n>28</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>16</elapsed><player1>27734</player1><sortorder>2</sortorder><team>8600</team><id>1301859</id><n>137</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>45</elapsed><subtype>shot</subtype><player1>27734</player1><sortorder>0</sortorder><team>8600</team><id>1302157</id><n>166</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>57</elapsed><subtype>shot</subtype><player1>27734</player1><sortorder>1</sortorder><team>8600</team><id>1302517</id><n>147</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>58</elapsed><subtype>shot</subtype><player1>41658</player1><sortorder>0</sortorder><team>9875</team><id>1302534</id><n>128</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><elapsed>65</elapsed><subtype>saved_back_into_play</subtype><player1>41658</player1><sortorder>1</sortorder><team>9875</team><id>1302616</id><n>86</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>25</value><value>9</value></coordinates><elapsed>32</elapsed><subtype>shot</subtype><player1>307069</player1><sortorder>5</sortorder><team>9790</team><id>3995790</id><n>175</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>54</elapsed><player1>30840</player1><sortorder>0</sortorder><team>9790</team><id>3996172</id><n>216</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>65</value></coordinates><elapsed>89</elapsed><player2>278863</player2><subtype>header</subtype><player1>20694</player1><sortorder>4</sortorder><team>9905</team><id>3996531</id><n>377</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>33</elapsed><subtype>shot</subtype><player1>37273</player1><sortorder>0</sortorder><team>8530</team><id>1902277</id><n>208</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>43</elapsed><subtype>shot</subtype><player1>27680</player1><sortorder>2</sortorder><team>10167</team><id>1902363</id><n>219</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>85</elapsed><player1>121716</player1><sortorder>0</sortorder><team>8558</team><id>1203414</id><n>320</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>47</elapsed><player1>96540</player1><sortorder>0</sortorder><team>10167</team><id>1919856</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>50</elapsed><player1>38920</player1><sortorder>0</sortorder><team>8533</team><id>1919889</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>69</elapsed><player1>24436</player1><sortorder>0</sortorder><team>8533</team><id>1920101</id><n>20</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player1>78186</player1><sortorder>0</sortorder><team>8576</team><id>3208137</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>41</elapsed><player1>18925</player1><sortorder>0</sortorder><team>9847</team><id>3208536</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>74</elapsed><player1>26419</player1><sortorder>0</sortorder><team>9847</team><id>3208698</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>14</value><value>60</value></coordinates><elapsed>13</elapsed><subtype>shot</subtype><player1>40730</player1><sortorder>2</sortorder><team>9748</team><id>5255906</id><n>121</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>14</value><value>61</value></coordinates><elapsed>47</elapsed><player2>40730</player2><subtype>shot</subtype><player1>210120</player1><sortorder>1</sortorder><team>9748</team><id>5256991</id><n>362</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>61</value></coordinates><elapsed>81</elapsed><player2>40060</player2><subtype>shot</subtype><player1>473852</player1><sortorder>2</sortorder><team>9748</team><id>5257423</id><n>591</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>65</elapsed><player2>144993</player2><subtype>shot</subtype><player1>177714</player1><sortorder>2</sortorder><team>9789</team><id>1779449</id><n>208</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>59</elapsed><player1>30714</player1><sortorder>0</sortorder><team>8686</team><id>510204</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>29</elapsed><player1>242469</player1><sortorder>0</sortorder><team>9910</team><id>2953173</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>43372</player1><sortorder>0</sortorder><team>7878</team><id>2953395</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><elapsed>45</elapsed><player2>24148</player2><subtype>deflected</subtype><player1>30802</player1><sortorder>5</sortorder><team>10260</team><id>1258654</id><n>284</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>66</elapsed><player2>31317</player2><subtype>shot</subtype><player1>34433</player1><sortorder>2</sortorder><team>8602</team><id>1259044</id><n>301</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>24148</player2><subtype>shot</subtype><player1>30802</player1><sortorder>1</sortorder><team>10260</team><id>1259497</id><n>327</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>38</elapsed><player1>27734</player1><sortorder>0</sortorder><team>8600</team><id>1965696</id><n>23</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player1>30983</player1><sortorder>0</sortorder><team>8600</team><id>1965858</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>81</elapsed><player1>39450</player1><sortorder>0</sortorder><team>9857</team><id>1965977</id><n>31</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>84</elapsed><player1>41542</player1><sortorder>0</sortorder><team>8600</team><id>1965987</id><n>32</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>31</elapsed><player1>166111</player1><sortorder>0</sortorder><team>8581</team><id>2682505</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>36</elapsed><player1>25759</player1><sortorder>0</sortorder><team>8633</team><id>2682528</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>39</elapsed><player1>41044</player1><sortorder>0</sortorder><team>8633</team><id>2682551</id><n>21</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>84</elapsed><player1>30893</player1><sortorder>0</sortorder><team>8633</team><id>2682722</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>87</elapsed><player1>36378</player1><sortorder>0</sortorder><team>8633</team><id>2682731</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>36378</player1><sortorder>0</sortorder><team>8633</team><id>2682732</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>28</value><value>49</value></coordinates><elapsed>56</elapsed><player2>292462</player2><subtype>distance</subtype><player1>210111</player1><sortorder>0</sortorder><team>8686</team><id>5278207</id><n>358</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>4</value></coordinates><elapsed>61</elapsed><player2>212767</player2><subtype>shot</subtype><player1>299886</player1><sortorder>2</sortorder><team>208931</team><id>5278255</id><n>379</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>65</value></coordinates><elapsed>84</elapsed><player2>292462</player2><subtype>shot</subtype><player1>15403</player1><sortorder>1</sortorder><team>8686</team><id>5278461</id><n>480</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>15</value><value>62</value></coordinates><elapsed>85</elapsed><subtype>shot</subtype><player1>292462</player1><sortorder>2</sortorder><team>8686</team><id>5278469</id><n>489</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>89</elapsed><player2>30892</player2><subtype>shot</subtype><player1>24753</player1><sortorder>4</sortorder><team>8549</team><id>434317</id><n>328</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>5</elapsed><player1>35724</player1><sortorder>0</sortorder><team>9847</team><id>3013291</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>21</elapsed><player1>22543</player1><sortorder>0</sortorder><team>9829</team><id>3013296</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>2</elapsed><player1>37411</player1><sortorder>0</sortorder><team>9906</team><id>786865</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>20</elapsed><player1>30698</player1><sortorder>0</sortorder><team>8394</team><id>786908</id><n>5</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>66</elapsed><player1>32656</player1><sortorder>0</sortorder><team>9906</team><id>786962</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>71</elapsed><player1>38577</player1><sortorder>0</sortorder><team>8394</team><id>786965</id><n>31</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>34</elapsed><player1>39303</player1><sortorder>0</sortorder><team>10242</team><id>2285112</id><n>15</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>26</value><value>2</value></coordinates><elapsed>14</elapsed><player2>26402</player2><subtype>volley</subtype><player1>210683</player1><sortorder>2</sortorder><team>9837</team><id>5608084</id><n>418</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>16</value><value>10</value></coordinates><elapsed>34</elapsed><player2>159839</player2><subtype>shot</subtype><player1>89476</player1><sortorder>1</sortorder><team>9837</team><id>5608664</id><n>158</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>11</value><value>24</value></coordinates><elapsed>51</elapsed><subtype>distance</subtype><player1>184591</player1><sortorder>0</sortorder><team>9837</team><id>5609143</id><n>434</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>56</elapsed><player1>562695</player1><sortorder>0</sortorder><team>9837</team><id>5609267</id><n>268</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>649</event_incident_typefk><coordinates><value>24</value><value>68</value></coordinates><elapsed>63</elapsed><subtype>tap_in</subtype><player1>426880</player1><sortorder>2</sortorder><team>9748</team><id>5609454</id><n>301</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>24</value><value>4</value></coordinates><elapsed>33</elapsed><player1>169162</player1><sortorder>1</sortorder><team>8659</team><id>5543785</id><n>205</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>22</value><value>65</value></coordinates><elapsed>73</elapsed><player2>25075</player2><subtype>header</subtype><player1>169162</player1><sortorder>1</sortorder><team>8659</team><id>5544063</id><n>500</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>10</elapsed><player1>27694</player1><sortorder>0</sortorder><team>8535</team><id>2476187</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>38</elapsed><player1>38433</player1><sortorder>0</sortorder><team>8535</team><id>2476317</id><n>33</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>60</elapsed><player1>24549</player1><sortorder>0</sortorder><team>8564</team><id>2476601</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>88</elapsed><player1>35497</player1><sortorder>0</sortorder><team>8535</team><id>2476765</id><n>31</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>20</elapsed><player1>178804</player1><sortorder>0</sortorder><team>8722</team><id>1824407</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>60</elapsed><player1>32118</player1><sortorder>0</sortorder><team>8722</team><id>1825613</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>66</elapsed><player1>178804</player1><sortorder>0</sortorder><team>8722</team><id>1825614</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>74</elapsed><player1>32118</player1><sortorder>0</sortorder><team>8722</team><id>1825626</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player1>46554</player1><sortorder>0</sortorder><team>8564</team><id>1149693</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>23</elapsed><player1>80562</player1><sortorder>0</sortorder><team>8564</team><id>1149791</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>28</elapsed><player1>46554</player1><sortorder>0</sortorder><team>8564</team><id>1149807</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>30729</player1><sortorder>0</sortorder><team>8564</team><id>1150368</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>52</elapsed><player2>37412</player2><subtype>distance</subtype><player1>15403</player1><sortorder>0</sortorder><team>8456</team><id>2937884</id><n>227</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>60</elapsed><subtype>shot</subtype><player1>110169</player1><sortorder>3</sortorder><team>8344</team><id>2937936</id><n>235</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>79</elapsed><player2>23806</player2><subtype>header</subtype><player1>24157</player1><sortorder>1</sortorder><team>8344</team><id>2938095</id><n>253</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>87</elapsed><player2>32942</player2><subtype>header</subtype><player1>24157</player1><sortorder>1</sortorder><team>8344</team><id>2938155</id><n>269</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>406</event_incident_typefk><elapsed>90</elapsed><player2>37459</player2><subtype>header</subtype><player1>75310</player1><sortorder>3</sortorder><team>8456</team><id>2938201</id><n>271</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>9</elapsed><player1>37441</player1><sortorder>0</sortorder><team>9783</team><id>621830</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>32</elapsed><player1>38578</player1><sortorder>0</sortorder><team>8603</team><id>622086</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>62</value></coordinates><elapsed>22</elapsed><player2>415539</player2><subtype>shot</subtype><player1>265924</player1><sortorder>2</sortorder><team>7943</team><id>4801817</id><n>166</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>8</value></coordinates><elapsed>36</elapsed><player2>96398</player2><subtype>shot</subtype><player1>30714</player1><sortorder>1</sortorder><team>8686</team><id>4802091</id><n>282</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>62</value></coordinates><elapsed>45</elapsed><player2>41542</player2><subtype>shot</subtype><player1>415539</player1><sortorder>1</sortorder><team>7943</team><id>4802312</id><n>326</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><coordinates><value>26</value><value>15</value></coordinates><elapsed>49</elapsed><subtype>volley</subtype><player1>292462</player1><sortorder>5</sortorder><team>8686</team><id>4802661</id><n>371</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>22</elapsed><player1>22283</player1><sortorder>0</sortorder><team>9876</team><id>3048370</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>29</elapsed><player1>245572</player1><sortorder>0</sortorder><team>9876</team><id>3048454</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>52</elapsed><player1>41475</player1><sortorder>0</sortorder><team>9857</team><id>3048830</id><n>28</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>57</elapsed><player1>30709</player1><sortorder>0</sortorder><team>9876</team><id>3048866</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>282775</player1><sortorder>0</sortorder><team>9876</team><id>3049205</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>8</elapsed><player1>46469</player1><sortorder>0</sortorder><team>9825</team><id>5107679</id><n>35</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>61</value></coordinates><elapsed>38</elapsed><player2>36378</player2><subtype>shot</subtype><player1>75489</player1><sortorder>4</sortorder><team>9825</team><id>5107960</id><n>177</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>2</elapsed><player1>45204</player1><sortorder>0</sortorder><team>8661</team><id>2295691</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player1>150872</player1><sortorder>0</sortorder><team>8558</team><id>2295692</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>85</elapsed><player1>45204</player1><sortorder>0</sortorder><team>8661</team><id>2296015</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>12</elapsed><player1>33761</player1><sortorder>0</sortorder><team>9783</team><id>2697959</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>20</elapsed><player1>186748</player1><sortorder>0</sortorder><team>9783</team><id>2698002</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>28</elapsed><player1>156556</player1><sortorder>0</sortorder><team>9783</team><id>2698041</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>43294</player1><sortorder>0</sortorder><team>9783</team><id>2698279</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>18</value><value>68</value></coordinates><elapsed>26</elapsed><player2>157101</player2><subtype>tap_in</subtype><player1>467022</player1><sortorder>0</sortorder><team>10229</team><id>4912327</id><n>508</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>23</value><value>2</value></coordinates><elapsed>72</elapsed><player2>180784</player2><subtype>tap_in</subtype><player1>25551</player1><sortorder>5</sortorder><team>7788</team><id>4913615</id><n>803</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player2>30474</player2><player1>33030</player1><sortorder>0</sortorder><team>9885</team><id>3301969</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>68</elapsed><player2>30731</player2><player1>38817</player1><sortorder>0</sortorder><team>9885</team><id>3302004</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>7</value></coordinates><elapsed>20</elapsed><player2>360559</player2><subtype>shot</subtype><player1>188533</player1><sortorder>0</sortorder><team>8611</team><id>4762151</id><n>113</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>51</elapsed><player1>360559</player1><sortorder>3</sortorder><team>8611</team><id>4763010</id><n>293</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>27</value><value>63</value></coordinates><elapsed>65</elapsed><player2>467479</player2><subtype>volley</subtype><player1>266526</player1><sortorder>3</sortorder><team>8593</team><id>4763266</id><n>535</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>82</elapsed><player1>178753</player1><sortorder>5</sortorder><team>8593</team><id>4763635</id><n>477</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>20</value><value>5</value></coordinates><elapsed>18</elapsed><player1>301456</player1><sortorder>0</sortorder><team>8636</team><id>5181274</id><n>96</n><type>goal</type><goal_type>o</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>24</value><value>65</value></coordinates><elapsed>25</elapsed><player1>127374</player1><sortorder>2</sortorder><team>8524</team><id>5181320</id><n>185</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>39</elapsed><player1>27429</player1><sortorder>0</sortorder><team>8178</team><id>2698171</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>58</elapsed><player1>43210</player1><sortorder>0</sortorder><team>8178</team><id>2698284</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>71</elapsed><player1>66578</player1><sortorder>0</sortorder><team>10189</team><id>2698321</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>87</elapsed><player1>25819</player1><sortorder>0</sortorder><team>10189</team><id>2698349</id><n>26</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>11</elapsed><player1>24448</player1><sortorder>0</sortorder><team>8533</team><id>463362</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>14</elapsed><player1>25597</player1><sortorder>0</sortorder><team>8543</team><id>463395</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>82</elapsed><player1>24443</player1><sortorder>0</sortorder><team>8533</team><id>464907</id><n>27</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>18</elapsed><player1>30338</player1><sortorder>2</sortorder><team>9879</team><id>618296</id><n>300</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>390</event_incident_typefk><elapsed>87</elapsed><player2>31907</player2><subtype>bicycle_kick</subtype><player1>24737</player1><sortorder>1</sortorder><team>9879</team><id>619322</id><n>393</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>5</elapsed><player1>155623</player1><sortorder>0</sortorder><team>9874</team><id>2923745</id><n>26</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>35</elapsed><player1>319822</player1><sortorder>0</sortorder><team>9748</team><id>2923766</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>43</elapsed><player1>169193</player1><sortorder>0</sortorder><team>9748</team><id>2923774</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>48</elapsed><player1>33744</player1><sortorder>0</sortorder><team>9748</team><id>2923791</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>18628</player1><sortorder>0</sortorder><team>8479</team><id>451217</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>38471</player1><sortorder>0</sortorder><team>10281</team><id>451696</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>28</elapsed><player1>34106</player1><sortorder>0</sortorder><team>8302</team><id>1436768</id><n>216</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><elapsed>35</elapsed><subtype>volley</subtype><player1>101422</player1><sortorder>1</sortorder><team>8302</team><id>1436803</id><n>228</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>65</elapsed><subtype>shot</subtype><player1>75310</player1><sortorder>0</sortorder><team>8302</team><id>1436878</id><n>258</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>66</elapsed><player1>35575</player1><sortorder>0</sortorder><team>8529</team><id>3203773</id><n>12</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>6</elapsed><subtype>shot</subtype><player1>33101</player1><sortorder>1</sortorder><team>9790</team><id>499769</id><n>230</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>24</elapsed><subtype>direct_freekick</subtype><player1>31235</player1><sortorder>0</sortorder><team>8697</team><id>499944</id><n>247</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>74</elapsed><subtype>shot</subtype><player1>30764</player1><sortorder>0</sortorder><team>9790</team><id>500561</id><n>305</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>13</elapsed><player1>178812</player1><sortorder>0</sortorder><team>8178</team><id>2681236</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>71</elapsed><player1>35112</player1><sortorder>0</sortorder><team>8721</team><id>2681715</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><coordinates><value>22</value><value>6</value></coordinates><elapsed>87</elapsed><subtype>shot</subtype><player1>213653</player1><sortorder>1</sortorder><team>9864</team><id>4693913</id><n>442</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>28</elapsed><player1>39045</player1><sortorder>0</sortorder><team>9904</team><id>3147509</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>31</elapsed><player1>141699</player1><sortorder>0</sortorder><team>9790</team><id>3147519</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>46</elapsed><player1>178784</player1><sortorder>0</sortorder><team>9790</team><id>3147606</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>84</elapsed><player1>304733</player1><sortorder>0</sortorder><team>9790</team><id>3147709</id><n>29</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>23</elapsed><player1>161660</player1><sortorder>0</sortorder><team>10233</team><id>2476296</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>54</elapsed><player1>27684</player1><sortorder>0</sortorder><team>9875</team><id>2476519</id><n>32</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player1>154239</player1><sortorder>0</sortorder><team>10233</team><id>2476520</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player1>49677</player1><sortorder>0</sortorder><team>9875</team><id>2476752</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>41658</player1><sortorder>0</sortorder><team>9875</team><id>2476753</id><n>31</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>193441</player1><sortorder>0</sortorder><team>9875</team><id>2476754</id><n>29</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>80</event_incident_typefk><elapsed>90</elapsed><subtype>shot</subtype><player1>51553</player1><sortorder>5</sortorder><team>8559</team><id>1394425</id><n>430</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>18</elapsed><player1>210404</player1><sortorder>0</sortorder><team>9853</team><id>3095589</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>51</elapsed><player1>179845</player1><sortorder>0</sortorder><team>9853</team><id>3095611</id><n>32</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>68</elapsed><player1>49677</player1><sortorder>0</sortorder><team>9847</team><id>3095623</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>26419</player1><sortorder>0</sortorder><team>9847</team><id>3095634</id><n>33</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>6</value></coordinates><elapsed>7</elapsed><player2>74991</player2><subtype>shot</subtype><player1>179083</player1><sortorder>2</sortorder><team>8306</team><id>5349435</id><n>65</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>29</elapsed><player1>213729</player1><sortorder>0</sortorder><team>8306</team><id>5349826</id><n>186</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>6</value></coordinates><elapsed>49</elapsed><player2>213729</player2><subtype>shot</subtype><player1>484906</player1><sortorder>3</sortorder><team>8306</team><id>5350096</id><n>333</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>30</value><value>6</value></coordinates><elapsed>84</elapsed><player2>37510</player2><subtype>shot</subtype><player1>484906</player1><sortorder>1</sortorder><team>8306</team><id>5350184</id><n>490</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>23</value><value>7</value></coordinates><elapsed>19</elapsed><player2>193930</player2><subtype>header</subtype><player1>128732</player1><sortorder>2</sortorder><team>10268</team><id>3906650</id><n>82</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>7</value></coordinates><elapsed>52</elapsed><player2>369800</player2><subtype>shot</subtype><player1>128732</player1><sortorder>1</sortorder><team>10268</team><id>3906912</id><n>378</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>86</elapsed><player1>58294</player1><sortorder>0</sortorder><team>8558</team><id>3907126</id><n>337</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>40</elapsed><player1>169193</player1><sortorder>0</sortorder><team>9748</team><id>3253423</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>76</elapsed><player1>26344</player1><sortorder>0</sortorder><team>9748</team><id>3253779</id><n>20</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>84</elapsed><player1>106292</player1><sortorder>0</sortorder><team>9830</team><id>3253857</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>33</elapsed><player1>26437</player1><sortorder>0</sortorder><team>10189</team><id>2399817</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>47</elapsed><player1>26434</player1><sortorder>0</sortorder><team>10189</team><id>2400111</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>58</elapsed><player1>36784</player1><sortorder>0</sortorder><team>10189</team><id>2400228</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>527</event_incident_typefk><elapsed>37</elapsed><subtype>indirect freekick</subtype><player1>25415</player1><sortorder>0</sortorder><team>8602</team><id>1128474</id><n>292</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>39</elapsed><player2>32581</player2><subtype>header</subtype><player1>32627</player1><sortorder>1</sortorder><team>8602</team><id>1128503</id><n>308</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>55</elapsed><player2>24773</player2><subtype>header</subtype><player1>40005</player1><sortorder>2</sortorder><team>10194</team><id>1128832</id><n>330</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>45</elapsed><player2>30878</player2><subtype>shot</subtype><player1>30905</player1><sortorder>1</sortorder><team>8636</team><id>1241918</id><n>220</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><coordinates><value>12</value><value>9</value></coordinates><elapsed>29</elapsed><subtype>volley</subtype><player1>103470</player1><sortorder>1</sortorder><team>9941</team><id>4762601</id><n>135</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>21</value><value>6</value></coordinates><elapsed>30</elapsed><player2>210184</player2><subtype>tap_in</subtype><player1>169865</player1><sortorder>2</sortorder><team>9941</team><id>4762630</id><n>173</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>14</value><value>61</value></coordinates><elapsed>57</elapsed><subtype>shot</subtype><player1>613714</player1><sortorder>1</sortorder><team>9837</team><id>4763396</id><n>255</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>14</value><value>55</value></coordinates><elapsed>81</elapsed><player2>562695</player2><subtype>distance</subtype><player1>191583</player1><sortorder>0</sortorder><team>9837</team><id>4763882</id><n>387</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>63</elapsed><player1>103470</player1><sortorder>0</sortorder><team>9851</team><id>3146674</id><n>15</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>64</elapsed><player1>40707</player1><sortorder>0</sortorder><team>9827</team><id>3146675</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>42</elapsed><player1>26154</player1><sortorder>0</sortorder><team>8639</team><id>1524157</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>69</elapsed><player1>26392</player1><sortorder>0</sortorder><team>8689</team><id>1524244</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>31</elapsed><player2>298923</player2><player1>27234</player1><sortorder>0</sortorder><team>10269</team><id>3300713</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>80</elapsed><player2>27475</player2><player1>27352</player1><sortorder>0</sortorder><team>9810</team><id>3301384</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player2>37087</player2><player1>27478</player1><sortorder>0</sortorder><team>9810</team><id>3301502</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>22</elapsed><player2>42346</player2><subtype>shot</subtype><player1>97752</player1><sortorder>0</sortorder><team>10269</team><id>942768</id><n>246</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>60</elapsed><player2>38810</player2><subtype>shot</subtype><player1>35831</player1><sortorder>0</sortorder><team>8165</team><id>943145</id><n>297</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>87</elapsed><player2>42346</player2><subtype>shot</subtype><player1>34114</player1><sortorder>2</sortorder><team>10269</team><id>943279</id><n>321</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>62</value></coordinates><elapsed>56</elapsed><player2>37480</player2><subtype>shot</subtype><player1>38044</player1><sortorder>1</sortorder><team>10205</team><id>3663880</id><n>233</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>22</value><value>67</value></coordinates><elapsed>85</elapsed><player2>262592</player2><subtype>tap_in</subtype><player1>359197</player1><sortorder>4</sortorder><team>10205</team><id>3663939</id><n>264</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>59</elapsed><player1>201939</player1><sortorder>0</sortorder><team>9874</team><id>2520129</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>63</elapsed><player1>26251</player1><sortorder>0</sortorder><team>8521</team><id>2520131</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>78</elapsed><player1>14560</player1><sortorder>0</sortorder><team>8521</team><id>2520146</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>64</value></coordinates><elapsed>3</elapsed><player2>297579</player2><subtype>shot</subtype><player1>519575</player1><sortorder>2</sortorder><team>9827</team><id>4483924</id><n>58</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>13</value><value>8</value></coordinates><elapsed>9</elapsed><player2>210119</player2><subtype>shot</subtype><player1>469852</player1><sortorder>2</sortorder><team>9748</team><id>4484060</id><n>50</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>37</elapsed><player1>213486</player1><sortorder>0</sortorder><team>7878</team><id>2730599</id><n>13</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>26195</player1><sortorder>0</sortorder><team>9827</team><id>3077259</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>26330</player1><sortorder>0</sortorder><team>9748</team><id>3077279</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><elapsed>2</elapsed><subtype>shot</subtype><player1>24773</player1><sortorder>2</sortorder><team>10194</team><id>899811</id><n>9</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>12</elapsed><player2>38899</player2><subtype>header</subtype><player1>42183</player1><sortorder>2</sortorder><team>10194</team><id>899833</id><n>245</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>34</elapsed><player2>24773</player2><subtype>shot</subtype><player1>40005</player1><sortorder>1</sortorder><team>10194</team><id>899873</id><n>259</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>37</elapsed><player2>35467</player2><subtype>shot</subtype><player1>23314</player1><sortorder>2</sortorder><team>10194</team><id>899880</id><n>255</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><elapsed>61</elapsed><player2>30956</player2><subtype>deflected</subtype><player1>34574</player1><sortorder>1</sortorder><team>9879</team><id>899947</id><n>283</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>85</elapsed><player2>26461</player2><subtype>distance</subtype><player1>30956</player1><sortorder>2</sortorder><team>9879</team><id>899999</id><n>304</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>81</elapsed><player2>41191</player2><subtype>shot</subtype><player1>26160</player1><sortorder>4</sortorder><team>10261</team><id>1728242</id><n>308</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>18</value><value>4</value></coordinates><elapsed>89</elapsed><subtype>shot</subtype><player1>110184</player1><sortorder>6</sortorder><team>10217</team><id>5427975</id><n>697</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>64</value></coordinates><elapsed>24</elapsed><player2>24229</player2><subtype>shot</subtype><player1>161420</player1><sortorder>1</sortorder><team>10261</team><id>4480853</id><n>115</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>19</value><value>3</value></coordinates><elapsed>54</elapsed><player2>187266</player2><subtype>header</subtype><player1>127133</player1><sortorder>3</sortorder><team>10172</team><id>4482212</id><n>231</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>22</value><value>18</value></coordinates><elapsed>61</elapsed><player2>127133</player2><subtype>distance</subtype><player1>109638</player1><sortorder>0</sortorder><team>10172</team><id>4482434</id><n>260</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>26</elapsed><player1>41240</player1><sortorder>0</sortorder><team>9873</team><id>3110646</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>32</elapsed><player1>41315</player1><sortorder>0</sortorder><team>9873</team><id>3110653</id><n>22</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>67</elapsed><player1>111787</player1><sortorder>0</sortorder><team>9873</team><id>3110723</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>41240</player1><sortorder>2</sortorder><team>9873</team><id>3110762</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>87</elapsed><player2>24023</player2><subtype>shot</subtype><player1>25666</player1><sortorder>1</sortorder><team>8668</team><id>1857520</id><n>298</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>27</elapsed><player2>30865</player2><subtype>header</subtype><player1>70409</player1><sortorder>3</sortorder><team>10260</team><id>1233361</id><n>310</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>81</elapsed><player2>47418</player2><subtype>shot</subtype><player1>42183</player1><sortorder>2</sortorder><team>10194</team><id>1234370</id><n>346</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>86</elapsed><player2>32569</player2><subtype>shot</subtype><player1>70409</player1><sortorder>3</sortorder><team>10260</team><id>1234446</id><n>366</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>39810</player1><sortorder>0</sortorder><team>8722</team><id>526736</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>58</elapsed><player1>36051</player1><sortorder>0</sortorder><team>9911</team><id>527217</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>87</elapsed><player1>37984</player1><sortorder>0</sortorder><team>8722</team><id>527526</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>16</elapsed><player2>30840</player2><subtype>header</subtype><player1>31921</player1><sortorder>5</sortorder><team>8586</team><id>1273390</id><n>312</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>22</event_incident_typefk><elapsed>32</elapsed><subtype>missed</subtype><player1>40755</player1><sortorder>1</sortorder><team>8586</team><id>1273711</id><n>122</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>42</elapsed><player2>31921</player2><subtype>header</subtype><player1>40755</player1><sortorder>2</sortorder><team>8586</team><id>1273896</id><n>346</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>68</elapsed><subtype>shot</subtype><player1>30830</player1><sortorder>1</sortorder><team>8586</team><id>1274489</id><n>379</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>75</elapsed><player2>30840</player2><subtype>shot</subtype><player1>31921</player1><sortorder>1</sortorder><team>8586</team><id>1274622</id><n>389</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>79</elapsed><player2>30342</player2><subtype>shot</subtype><player1>23921</player1><sortorder>3</sortorder><team>8655</team><id>1274693</id><n>398</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>89</elapsed><subtype>shot</subtype><player1>30739</player1><sortorder>2</sortorder><team>8655</team><id>1274874</id><n>415</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>27</elapsed><player1>106292</player1><sortorder>0</sortorder><team>9830</team><id>3019459</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>88</elapsed><player1>211146</player1><sortorder>0</sortorder><team>9830</team><id>3019751</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ... 
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>33</elapsed><player2>24846</player2><subtype>header</subtype><player1>30876</player1><sortorder>3</sortorder><team>8668</team><id>1010425</id><n>293</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>85</elapsed><player2>109058</player2><subtype>shot</subtype><player1>24011</player1><sortorder>1</sortorder><team>8668</team><id>1011729</id><n>353</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>60</elapsed><player2>33468</player2><subtype>shot</subtype><player1>175947</player1><sortorder>2</sortorder><team>8472</team><id>1916567</id><n>242</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>391</event_incident_typefk><elapsed>4</elapsed><player2>130670</player2><subtype>loose_ball</subtype><player1>23937</player1><sortorder>0</sortorder><team>8559</team><id>784599</id><n>311</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>34</elapsed><player2>30830</player2><subtype>volley</subtype><player1>38820</player1><sortorder>1</sortorder><team>8586</team><id>784890</id><n>309</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>69</elapsed><player2>11576</player2><subtype>header</subtype><player1>23934</player1><sortorder>1</sortorder><team>8559</team><id>785453</id><n>376</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>73</elapsed><player2>38820</player2><subtype>header</subtype><player1>46403</player1><sortorder>5</sortorder><team>8586</team><id>785506</id><n>373</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>86</elapsed><player1>30638</player1><sortorder>0</sortorder><team>9823</team><id>448038</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>20</value><value>6</value></coordinates><elapsed>41</elapsed><player2>191315</player2><subtype>header</subtype><player1>25921</player1><sortorder>2</sortorder><team>8633</team><id>5361046</id><n>497</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>28</value><value>19</value></coordinates><elapsed>50</elapsed><player2>30962</player2><subtype>distance</subtype><player1>30893</player1><sortorder>1</sortorder><team>8633</team><id>5361727</id><n>623</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>17</value><value>15</value></coordinates><elapsed>58</elapsed><subtype>direct_freekick</subtype><player1>30893</player1><sortorder>0</sortorder><team>8633</team><id>5361989</id><n>635</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>62</value></coordinates><elapsed>62</elapsed><player2>358148</player2><subtype>shot</subtype><player1>174472</player1><sortorder>2</sortorder><team>9910</team><id>5362147</id><n>751</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>26</value><value>6</value></coordinates><elapsed>65</elapsed><player2>191315</player2><subtype>tap_in</subtype><player1>30893</player1><sortorder>2</sortorder><team>8633</team><id>5362206</id><n>695</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>21</value><value>6</value></coordinates><elapsed>76</elapsed><player2>281085</player2><subtype>header</subtype><player1>30893</player1><sortorder>4</sortorder><team>8633</team><id>5362446</id><n>788</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>22</value><value>9</value></coordinates><elapsed>78</elapsed><subtype>shot</subtype><player1>281085</player1><sortorder>1</sortorder><team>8633</team><id>5362466</id><n>802</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>16</value><value>15</value></coordinates><elapsed>81</elapsed><player2>208494</player2><subtype>distance</subtype><player1>31921</player1><sortorder>0</sortorder><team>8633</team><id>5362540</id><n>842</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>6</value></coordinates><elapsed>2</elapsed><player2>147951</player2><subtype>shot</subtype><player1>38433</player1><sortorder>2</sortorder><team>8535</team><id>5246284</id><n>43</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>63</value></coordinates><elapsed>73</elapsed><player2>299374</player2><subtype>shot</subtype><player1>299886</player1><sortorder>4</sortorder><team>208931</team><id>5248399</id><n>677</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>407</event_incident_typefk><coordinates><value>15</value><value>12</value></coordinates><elapsed>90</elapsed><player2>43319</player2><subtype>distance</subtype><player1>18506</player1><sortorder>15</sortorder><team>8535</team><id>5248913</id><n>819</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>20</elapsed><player2>31317</player2><subtype>header</subtype><player1>23291</player1><sortorder>4</sortorder><team>8602</team><id>1445691</id><n>263</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>30</elapsed><player2>40755</player2><subtype>distance</subtype><player1>30348</player1><sortorder>1</sortorder><team>8586</team><id>1445786</id><n>273</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>35</elapsed><subtype>distance</subtype><player1>30348</player1><sortorder>0</sortorder><team>8586</team><id>1445839</id><n>274</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>40</elapsed><player1>23291</player1><sortorder>1</sortorder><team>8602</team><id>1445894</id><n>286</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>48</elapsed><player2>30818</player2><subtype>shot</subtype><player1>40755</player1><sortorder>0</sortorder><team>8586</team><id>1446114</id><n>290</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>346</event_incident_typefk><elapsed>80</elapsed><player1>23091</player1><sortorder>3</sortorder><team>8602</team><id>1446457</id><n>193</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>87</elapsed><player2>23538</player2><subtype>header</subtype><player1>32627</player1><sortorder>2</sortorder><team>8602</team><id>1446542</id><n>342</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>16</elapsed><subtype>loose_ball</subtype><player1>40599</player1><sortorder>1</sortorder><team>10205</team><id>660802</id><n>234</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>43</elapsed><player2>37477</player2><subtype>shot</subtype><player1>38551</player1><sortorder>1</sortorder><team>10205</team><id>661071</id><n>259</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>82</elapsed><player1>37474</player1><sortorder>0</sortorder><team>8305</team><id>661472</id><n>310</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>60</elapsed><player2>27472</player2><subtype>shot</subtype><player1>27478</player1><sortorder>2</sortorder><team>9810</team><id>810210</id><n>255</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>70</elapsed><subtype>shot</subtype><player1>30834</player1><sortorder>0</sortorder><team>9823</team><id>810243</id><n>263</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>88</elapsed><player2>116772</player2><subtype>header</subtype><player1>33085</player1><sortorder>5</sortorder><team>9823</team><id>810425</id><n>285</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><coordinates><value>23</value><value>4</value></coordinates><elapsed>24</elapsed><subtype>loose_ball</subtype><player1>467022</player1><sortorder>5</sortorder><team>10229</team><id>5310863</id><n>569</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>5</value></coordinates><elapsed>34</elapsed><player2>157101</player2><subtype>shot</subtype><player1>30602</player1><sortorder>5</sortorder><team>10229</team><id>5310917</id><n>946</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>38</elapsed><subtype>saved_back_into_play</subtype><player1>157101</player1><sortorder>0</sortorder><team>10229</team><id>5310932</id><n>492</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><coordinates><value>18</value><value>4</value></coordinates><elapsed>43</elapsed><subtype>shot</subtype><player1>467022</player1><sortorder>1</sortorder><team>10229</team><id>5310969</id><n>526</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>10</value></coordinates><elapsed>49</elapsed><player2>512747</player2><subtype>shot</subtype><player1>414232</player1><sortorder>2</sortorder><team>10229</team><id>5311188</id><n>604</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>51</elapsed><player1>179239</player1><sortorder>1</sortorder><team>8674</team><id>5311209</id><n>625</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>31</value><value>6</value></coordinates><elapsed>71</elapsed><subtype>shot</subtype><player1>157101</player1><sortorder>5</sortorder><team>10229</team><id>5311493</id><n>778</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>22</value><value>4</value></coordinates><elapsed>9</elapsed><player2>37950</player2><subtype>tap_in</subtype><player1>154249</player1><sortorder>2</sortorder><team>8686</team><id>3887073</id><n>41</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>3</value></coordinates><elapsed>81</elapsed><player2>93985</player2><subtype>shot</subtype><player1>30682</player1><sortorder>4</sortorder><team>8686</team><id>3888511</id><n>248</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>18</elapsed><player2>25366</player2><subtype>shot</subtype><player1>30827</player1><sortorder>11</sortorder><team>8697</team><id>2050762</id><n>235</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>52</elapsed><player2>38398</player2><subtype>shot</subtype><player1>30854</player1><sortorder>1</sortorder><team>9788</team><id>2051071</id><n>266</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>67</elapsed><player2>129944</player2><subtype>shot</subtype><player1>30854</player1><sortorder>10</sortorder><team>9788</team><id>2051237</id><n>283</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>74</elapsed><player2>42860</player2><subtype>header</subtype><player1>28480</player1><sortorder>1</sortorder><team>8697</team><id>2051332</id><n>291</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>39</elapsed><player1>32575</player1><sortorder>0</sortorder><team>8639</team><id>2075384</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>107417</player1><sortorder>0</sortorder><team>8639</team><id>2075531</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>75</elapsed><player1>38567</player1><sortorder>0</sortorder><team>8696</team><id>689936</id><n>13</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>42</elapsed><player2>31953</player2><subtype>shot</subtype><player1>30830</player1><sortorder>5</sortorder><team>10194</team><id>2711835</id><n>285</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>77</elapsed><player1>33881</player1><sortorder>0</sortorder><team>10194</team><id>2712791</id><n>353</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>23</value><value>65</value></coordinates><elapsed>6</elapsed><player2>107280</player2><subtype>header</subtype><player1>214426</player1><sortorder>3</sortorder><team>8191</team><id>4510560</id><n>35</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>8</elapsed><player2>30699</player2><subtype>shot</subtype><player1>37804</player1><sortorder>1</sortorder><team>8455</team><id>910390</id><n>164</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>17</elapsed><player2>30456</player2><subtype>shot</subtype><player1>30679</player1><sortorder>0</sortorder><team>8455</team><id>910493</id><n>171</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>22</elapsed><player2>30627</player2><subtype>shot</subtype><player1>38834</player1><sortorder>0</sortorder><team>8455</team><id>910539</id><n>175</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>34</elapsed><player2>38834</player2><subtype>volley</subtype><player1>30631</player1><sortorder>1</sortorder><team>8455</team><id>910673</id><n>183</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>52</elapsed><player2>30630</player2><subtype>header</subtype><player1>30699</player1><sortorder>2</sortorder><team>8455</team><id>911021</id><n>200</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>56</elapsed><player2>30988</player2><subtype>distance</subtype><player1>24116</player1><sortorder>1</sortorder><team>8472</team><id>911074</id><n>201</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>65</elapsed><subtype>loose_ball</subtype><player1>37804</player1><sortorder>3</sortorder><team>8455</team><id>911183</id><n>205</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>90</elapsed><player2>37804</player2><subtype>header</subtype><player1>30631</player1><sortorder>1</sortorder><team>8455</team><id>911515</id><n>230</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>31103</player2><subtype>shot</subtype><player1>23949</player1><sortorder>1</sortorder><team>8472</team><id>911545</id><n>233</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>63</value></coordinates><elapsed>56</elapsed><player2>241825</player2><subtype>shot</subtype><player1>75307</player1><sortorder>0</sortorder><team>10267</team><id>5319487</id><n>315</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>131</event_incident_typefk><coordinates><value>26</value><value>60</value></coordinates><elapsed>90</elapsed><subtype>loose_ball</subtype><player1>428947</player1><sortorder>6</sortorder><team>10267</team><id>5319842</id><n>485</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>406</event_incident_typefk><coordinates><value>28</value><value>5</value></coordinates><elapsed>90</elapsed><player2>213711</player2><subtype>header</subtype><player1>477493</player1><sortorder>12</sortorder><team>7878</team><id>5319855</id><n>502</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>55</elapsed><subtype>shot</subtype><player1>30764</player1><sortorder>1</sortorder><team>9823</team><id>763113</id><n>169</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>74</elapsed><subtype>shot</subtype><player1>95082</player1><sortorder>1</sortorder><team>8165</team><id>763186</id><n>147</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><elapsed>82</elapsed><subtype>header</subtype><player1>33085</player1><sortorder>0</sortorder><team>9823</team><id>763297</id><n>170</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>30</value><value>63</value></coordinates><elapsed>11</elapsed><player2>287231</player2><subtype>shot</subtype><player1>291425</player1><sortorder>5</sortorder><team>9905</team><id>5308590</id><n>148</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>8</value></coordinates><elapsed>13</elapsed><player2>50661</player2><subtype>shot</subtype><player1>614449</player1><sortorder>6</sortorder><team>8226</team><id>5308621</id><n>192</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>4</value></coordinates><elapsed>68</elapsed><player2>212893</player2><subtype>shot</subtype><player1>212819</player1><sortorder>3</sortorder><team>8226</team><id>5309587</id><n>522</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>22</value><value>3</value></coordinates><elapsed>76</elapsed><player2>212156</player2><subtype>tap_in</subtype><player1>212819</player1><sortorder>3</sortorder><team>8226</team><id>5309703</id><n>565</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>15</value><value>57</value></coordinates><elapsed>78</elapsed><player2>95228</player2><subtype>distance</subtype><player1>287231</player1><sortorder>6</sortorder><team>9905</team><id>5309741</id><n>599</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>17</elapsed><player1>24011</player1><sortorder>1</sortorder><team>8668</team><id>437961</id><n>261</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>35</elapsed><player2>24846</player2><subtype>shot</subtype><player1>39618</player1><sortorder>2</sortorder><team>8668</team><id>438390</id><n>287</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>406</event_incident_typefk><elapsed>45</elapsed><player2>23983</player2><subtype>header</subtype><player1>24228</player1><sortorder>4</sortorder><team>10261</team><id>438694</id><n>299</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>47</elapsed><player2>24228</player2><subtype>shot</subtype><player1>34574</player1><sortorder>1</sortorder><team>10261</team><id>438854</id><n>302</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>25</value><value>3</value></coordinates><elapsed>1</elapsed><player2>196186</player2><subtype>header</subtype><player1>187666</player1><sortorder>4</sortorder><team>6391</team><id>5285625</id><n>47</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>34</value><value>58</value></coordinates><elapsed>8</elapsed><player2>465924</player2><subtype>distance</subtype><player1>33100</player1><sortorder>4</sortorder><team>10242</team><id>5285809</id><n>162</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>58</value></coordinates><elapsed>36</elapsed><player2>33100</player2><subtype>shot</subtype><player1>465924</player1><sortorder>5</sortorder><team>10242</team><id>5286424</id><n>506</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>61</value></coordinates><elapsed>43</elapsed><player2>26420</player2><subtype>shot</subtype><player1>465924</player1><sortorder>5</sortorder><team>10242</team><id>5286539</id><n>559</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>26</value><value>4</value></coordinates><elapsed>57</elapsed><player2>196186</player2><subtype>header</subtype><player1>179516</player1><sortorder>1</sortorder><team>6391</team><id>5287127</id><n>770</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>21</elapsed><player1>25337</player1><sortorder>0</sortorder><team>8537</team><id>846764</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>63</elapsed><player1>41882</player1><sortorder>0</sortorder><team>10233</team><id>847394</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>42601</player1><sortorder>0</sortorder><team>8537</team><id>847792</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>38</elapsed><player1>58294</player1><sortorder>4</sortorder><team>8696</team><id>1876111</id><n>260</n><type>goal</type><goal_type>p</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>71</elapsed><player1>58294</player1><sortorder>0</sortorder><team>8696</team><id>1876353</id><n>285</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>11</elapsed><player1>26982</player1><sortorder>0</sortorder><team>8406</team><id>3076092</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>35</elapsed><player1>298915</player1><sortorder>0</sortorder><team>8721</team><id>3076215</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>42</elapsed><player1>147729</player1><sortorder>0</sortorder><team>8721</team><id>3076285</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>npm</comment><event_incident_typefk>23</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>59</elapsed><subtype>post</subtype><player1>24372</player1><sortorder>1</sortorder><team>8191</team><id>4392754</id><n>294</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>649</event_incident_typefk><coordinates><value>21</value><value>68</value></coordinates><elapsed>60</elapsed><subtype>tap_in</subtype><player1>286119</player1><sortorder>3</sortorder><team>8197</team><id>4392788</id><n>327</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><coordinates><value>21</value><value>63</value></coordinates><elapsed>38</elapsed><subtype>shot</subtype><player1>239807</player1><sortorder>0</sortorder><team>8659</team><id>3753077</id><n>111</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>64</value></coordinates><elapsed>74</elapsed><player2>23257</player2><subtype>header</subtype><player1>24171</player1><sortorder>1</sortorder><team>8659</team><id>3753977</id><n>285</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>10</elapsed><player1>33782</player1><sortorder>0</sortorder><team>9847</team><id>2717682</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>65</elapsed><player1>35724</player1><sortorder>0</sortorder><team>9847</team><id>2717730</id><n>23</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>88</elapsed><player1>41174</player1><sortorder>0</sortorder><team>9847</team><id>2717744</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>25</elapsed><player1>32572</player1><sortorder>0</sortorder><team>9847</team><id>1421330</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>37554</player1><sortorder>0</sortorder><team>9847</team><id>1421407</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>74</elapsed><player1>30457</player1><sortorder>0</sortorder><team>9847</team><id>1421687</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>14</elapsed><subtype>direct_freekick</subtype><player1>80564</player1><sortorder>1</sortorder><team>9810</team><id>825327</id><n>172</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>25</elapsed><player1>36076</player1><sortorder>3</sortorder><team>9810</team><id>825410</id><n>177</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>53</elapsed><player2>27471</player2><subtype>header</subtype><player1>36076</player1><sortorder>4</sortorder><team>9810</team><id>825655</id><n>207</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>20</value><value>2</value></coordinates><elapsed>18</elapsed><player2>298448</player2><subtype>header</subtype><player1>277460</player1><sortorder>4</sortorder><team>8593</team><id>4676674</id><n>87</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>11</value></coordinates><elapsed>67</elapsed><player2>467479</player2><subtype>shot</subtype><player1>562267</player1><sortorder>3</sortorder><team>8593</team><id>4677869</id><n>321</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>10</value></coordinates><elapsed>90</elapsed><player2>39213</player2><subtype>shot</subtype><player1>562267</player1><sortorder>7</sortorder><team>8593</team><id>4678404</id><n>426</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>10</elapsed><player1>40840</player1><sortorder>0</sortorder><team>9853</team><id>1827111</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>74</elapsed><player1>46417</player1><sortorder>0</sortorder><team>9853</team><id>1827571</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>20</elapsed><player1>23853</player1><sortorder>0</sortorder><team>8371</team><id>1019228</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>62</elapsed><player1>42369</player1><sortorder>0</sortorder><team>8371</team><id>1019668</id><n>2</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>20</elapsed><subtype>shot</subtype><player1>41542</player1><sortorder>4</sortorder><team>10233</team><id>1431817</id><n>232</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><elapsed>52</elapsed><subtype>header</subtype><player1>33640</player1><sortorder>3</sortorder><team>8530</team><id>1431901</id><n>243</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>56</elapsed><player2>33640</player2><subtype>shot</subtype><player1>37273</player1><sortorder>0</sortorder><team>8530</team><id>1431905</id><n>291</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>159</event_incident_typefk><elapsed>76</elapsed><subtype>saved</subtype><player1>40608</player1><sortorder>2</sortorder><team>10233</team><id>1431943</id><n>152</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>21</value><value>67</value></coordinates><elapsed>54</elapsed><player2>39334</player2><subtype>tap_in</subtype><player1>18945</player1><sortorder>3</sortorder><team>8543</team><id>4484996</id><n>209</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>6</elapsed><subtype>distance</subtype><player1>39719</player1><sortorder>2</sortorder><team>8535</team><id>658792</id><n>235</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>47</elapsed><player2>24453</player2><subtype>header</subtype><player1>30881</player1><sortorder>3</sortorder><team>8535</team><id>659056</id><n>293</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>67</elapsed><subtype>shot</subtype><player1>30881</player1><sortorder>2</sortorder><team>8535</team><id>659142</id><n>317</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>73</elapsed><subtype>loose_ball</subtype><player1>33816</player1><sortorder>6</sortorder><team>8535</team><id>659162</id><n>322</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>86</elapsed><subtype>distance</subtype><player1>38822</player1><sortorder>0</sortorder><team>8686</team><id>659210</id><n>333</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>25</elapsed><player1>39106</player1><sortorder>0</sortorder><team>8302</team><id>2384378</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>48</elapsed><player1>75310</player1><sortorder>0</sortorder><team>8302</team><id>2384388</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>53</elapsed><player1>30613</player1><sortorder>0</sortorder><team>8634</team><id>2384389</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>84</elapsed><player1>30613</player1><sortorder>0</sortorder><team>8634</team><id>2384398</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>30909</player1><sortorder>0</sortorder><team>8634</team><id>2384399</id><n>28</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>17</elapsed><player1>37441</player1><sortorder>0</sortorder><team>9783</team><id>677566</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>43</elapsed><player1>102572</player1><sortorder>0</sortorder><team>8479</team><id>677724</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>49</elapsed><player1>37447</player1><sortorder>0</sortorder><team>9783</team><id>677876</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>20</value><value>15</value></coordinates><elapsed>37</elapsed><player2>278848</player2><subtype>distance</subtype><player1>352358</player1><sortorder>3</sortorder><team>10218</team><id>5508333</id><n>115</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>31</value><value>61</value></coordinates><elapsed>41</elapsed><player2>110214</player2><subtype>shot</subtype><player1>318809</player1><sortorder>2</sortorder><team>10228</team><id>5508392</id><n>138</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>57</elapsed><player1>279490</player1><sortorder>0</sortorder><team>8466</team><id>4340177</id><n>269</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>8</value></coordinates><elapsed>82</elapsed><player2>46893</player2><subtype>shot</subtype><player1>41280</player1><sortorder>2</sortorder><team>8466</team><id>4340763</id><n>383</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>25</elapsed><player1>31292</player1><sortorder>0</sortorder><team>9827</team><id>1744265</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>29</elapsed><player1>31292</player1><sortorder>0</sortorder><team>9827</team><id>1744323</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>38</elapsed><player1>22313</player1><sortorder>0</sortorder><team>9905</team><id>832355</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>20</value><value>2</value></coordinates><elapsed>24</elapsed><subtype>shot</subtype><player1>166648</player1><sortorder>1</sortorder><team>8302</team><id>3977523</id><n>85</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>42</elapsed><player1>161291</player1><sortorder>0</sortorder><team>7878</team><id>3977744</id><n>371</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>21</value><value>7</value></coordinates><elapsed>65</elapsed><subtype>shot</subtype><player1>108568</player1><sortorder>2</sortorder><team>8302</team><id>3978164</id><n>235</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>6</value></coordinates><elapsed>79</elapsed><player2>38821</player2><subtype>shot</subtype><player1>166648</player1><sortorder>1</sortorder><team>8302</team><id>3978401</id><n>298</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>22</value><value>6</value></coordinates><elapsed>89</elapsed><player2>26392</player2><subtype>header</subtype><player1>26336</player1><sortorder>1</sortorder><team>8302</team><id>3978565</id><n>358</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>5</value></coordinates><elapsed>90</elapsed><player2>213805</player2><subtype>header</subtype><player1>26392</player1><sortorder>4</sortorder><team>8302</team><id>3978616</id><n>352</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>89</elapsed><player2>30895</player2><subtype>distance</subtype><player1>31921</player1><sortorder>1</sortorder><team>8586</team><id>2781435</id><n>303</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>33</elapsed><player1>38848</player1><sortorder>0</sortorder><team>8722</team><id>384612</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>39</elapsed><player1>33348</player1><sortorder>0</sortorder><team>8722</team><id>384650</id><n>7</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>81</elapsed><player1>69864</player1><sortorder>0</sortorder><team>9810</team><id>384951</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>42</elapsed><player1>287224</player1><sortorder>0</sortorder><team>7794</team><id>3220208</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>4</value></coordinates><elapsed>5</elapsed><player2>49939</player2><subtype>shot</subtype><player1>38817</player1><sortorder>2</sortorder><team>9885</team><id>4055449</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>13</value><value>64</value></coordinates><elapsed>64</elapsed><player2>41199</player2><subtype>shot</subtype><player1>282770</player1><sortorder>1</sortorder><team>8636</team><id>4055577</id><n>193</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player2>116772</player2><player1>95078</player1><sortorder>0</sortorder><team>9823</team><id>3344634</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>14</elapsed><player2>30872</player2><player1>177714</player1><sortorder>0</sortorder><team>9823</team><id>3344660</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>66</elapsed><player1>50345</player1><sortorder>0</sortorder><team>8177</team><id>3345191</id><n>19</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player2>177714</player2><player1>30924</player1><sortorder>0</sortorder><team>9823</team><id>3345260</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>395</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>24</elapsed><player2>26330</player2><player1>94916</player1><sortorder>3</sortorder><team>9904</team><id>4480033</id><n>130</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>30</elapsed><player1>26618</player1><sortorder>0</sortorder><team>8406</team><id>4480176</id><n>149</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>63</value></coordinates><elapsed>55</elapsed><player2>26330</player2><subtype>shot</subtype><player1>94916</player1><sortorder>0</sortorder><team>9904</team><id>4481265</id><n>278</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>8</value></coordinates><elapsed>9</elapsed><player2>156008</player2><subtype>shot</subtype><player1>246575</player1><sortorder>2</sortorder><team>8650</team><id>4352986</id><n>47</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>19</value><value>7</value></coordinates><elapsed>70</elapsed><subtype>shot</subtype><player1>47558</player1><sortorder>4</sortorder><team>8650</team><id>4353350</id><n>431</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>48</elapsed><player2>38699</player2><subtype>shot</subtype><player1>37480</player1><sortorder>1</sortorder><team>10205</team><id>537786</id><n>234</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>55</elapsed><player2>32657</player2><subtype>header</subtype><player1>26146</player1><sortorder>0</sortorder><team>8634</team><id>537796</id><n>245</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>67</elapsed><player2>39854</player2><subtype>volley</subtype><player1>30626</player1><sortorder>0</sortorder><team>8634</team><id>537822</id><n>257</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>dg</comment><event_incident_typefk>289</event_incident_typefk><elapsed>11</elapsed><sortorder>2</sortorder><team>8697</team><id>1506245</id><n>31</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><elapsed>59</elapsed><subtype>saved_back_into_play</subtype><player1>36889</player1><sortorder>0</sortorder><team>8697</team><id>1506884</id><n>233</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>59</elapsed><subtype>loose_ball</subtype><player1>36889</player1><sortorder>1</sortorder><team>8697</team><id>1506885</id><n>468</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>63</elapsed><player2>72813</player2><subtype>header</subtype><player1>37783</player1><sortorder>11</sortorder><team>10189</team><id>1506946</id><n>475</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>289</event_incident_typefk><elapsed>74</elapsed><sortorder>4</sortorder><team>10189</team><id>1507018</id><n>286</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>21</value><value>62</value></coordinates><elapsed>9</elapsed><subtype>shot</subtype><player1>352888</player1><sortorder>3</sortorder><team>7794</team><id>5538396</id><n>308</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>9</value></coordinates><elapsed>20</elapsed><player2>409193</player2><subtype>shot</subtype><player1>354491</player1><sortorder>1</sortorder><team>6391</team><id>5538616</id><n>184</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>25</value><value>6</value></coordinates><elapsed>37</elapsed><player2>466143</player2><subtype>volley</subtype><player1>41240</player1><sortorder>2</sortorder><team>6391</team><id>5538907</id><n>283</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>63</elapsed><player1>466143</player1><sortorder>0</sortorder><team>6391</team><id>5539467</id><n>419</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>649</event_incident_typefk><coordinates><value>19</value><value>63</value></coordinates><elapsed>77</elapsed><subtype>tap_in</subtype><player1>46243</player1><sortorder>2</sortorder><team>7794</team><id>5539657</id><n>609</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><coordinates><value>20</value><value>7</value></coordinates><elapsed>17</elapsed><subtype>shot</subtype><player1>38369</player1><sortorder>3</sortorder><team>9850</team><id>5446759</id><n>113</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>406</event_incident_typefk><coordinates><value>20</value><value>5</value></coordinates><elapsed>45</elapsed><player2>231801</player2><subtype>header</subtype><player1>178206</player1><sortorder>10</sortorder><team>9850</team><id>5447585</id><n>344</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>20</value><value>63</value></coordinates><elapsed>71</elapsed><player2>166422</player2><subtype>header</subtype><player1>351860</player1><sortorder>1</sortorder><team>10261</team><id>5448674</id><n>535</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>9</value></coordinates><elapsed>74</elapsed><player2>46354</player2><subtype>shot</subtype><player1>38369</player1><sortorder>0</sortorder><team>9850</team><id>5448726</id><n>555</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>87</elapsed><player1>351860</player1><sortorder>0</sortorder><team>10261</team><id>5449034</id><n>636</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>8</value></coordinates><elapsed>90</elapsed><player2>46354</player2><subtype>shot</subtype><player1>25667</player1><sortorder>16</sortorder><team>9850</team><id>5449196</id><n>726</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player1>33668</player1><sortorder>0</sortorder><team>8603</team><id>555305</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>22</elapsed><player1>33022</player1><sortorder>0</sortorder><team>10281</team><id>555353</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>38578</player1><sortorder>0</sortorder><team>8603</team><id>555607</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>38578</player1><sortorder>0</sortorder><team>8603</team><id>555803</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>4</value></coordinates><elapsed>20</elapsed><player2>134232</player2><subtype>shot</subtype><player1>304860</player1><sortorder>3</sortorder><team>8639</team><id>4064892</id><n>100</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>15</value><value>8</value></coordinates><elapsed>42</elapsed><player2>154257</player2><subtype>shot</subtype><player1>30981</player1><sortorder>1</sortorder><team>8634</team><id>3663215</id><n>193</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>28</value><value>8</value></coordinates><elapsed>46</elapsed><player2>25773</player2><subtype>shot</subtype><player1>522579</player1><sortorder>3</sortorder><team>8634</team><id>3663259</id><n>199</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>27</value><value>9</value></coordinates><elapsed>64</elapsed><subtype>shot</subtype><player1>30981</player1><sortorder>1</sortorder><team>8634</team><id>3663336</id><n>211</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>86</elapsed><player1>163199</player1><sortorder>0</sortorder><team>9878</team><id>2377740</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>40</elapsed><player1>78990</player1><sortorder>0</sortorder><team>8226</team><id>740215</id><n>15</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><elapsed>47</elapsed><subtype>shot</subtype><player1>18576</player1><sortorder>2</sortorder><team>9789</team><id>1051844</id><n>87</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>57</elapsed><player2>94652</player2><subtype>header</subtype><player1>31718</player1><sortorder>2</sortorder><team>9789</team><id>1052006</id><n>207</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>89</elapsed><player2>78990</player2><subtype>header</subtype><player1>36084</player1><sortorder>5</sortorder><team>8226</team><id>1052304</id><n>234</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>31</elapsed><player2>36012</player2><subtype>shot</subtype><player1>42714</player1><sortorder>0</sortorder><team>8668</team><id>1972634</id><n>265</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>36</elapsed><player2>23163</player2><subtype>header</subtype><player1>24741</player1><sortorder>3</sortorder><team>10172</team><id>1972697</id><n>273</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>76</elapsed><player1>134232</player1><sortorder>0</sortorder><team>8639</team><id>1954342</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>18</value><value>68</value></coordinates><elapsed>9</elapsed><player2>42704</player2><subtype>tap_in</subtype><player1>20645</player1><sortorder>6</sortorder><team>10217</team><id>5222248</id><n>134</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>24</value><value>5</value></coordinates><elapsed>69</elapsed><player2>179208</player2><subtype>volley</subtype><player1>467488</player1><sortorder>1</sortorder><team>8526</team><id>5222956</id><n>400</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>32</value><value>9</value></coordinates><elapsed>78</elapsed><subtype>shot</subtype><player1>351939</player1><sortorder>5</sortorder><team>8526</team><id>5223058</id><n>553</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>9</value></coordinates><elapsed>90</elapsed><player2>657454</player2><subtype>shot</subtype><player1>248154</player1><sortorder>4</sortorder><team>8526</team><id>5223196</id><n>535</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>23</value><value>7</value></coordinates><elapsed>3</elapsed><player2>30834</player2><subtype>header</subtype><player1>30872</player1><sortorder>4</sortorder><team>9823</team><id>4208006</id><n>38</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>12</value></coordinates><elapsed>10</elapsed><player2>30872</player2><subtype>shot</subtype><player1>30924</player1><sortorder>4</sortorder><team>9823</team><id>4208063</id><n>561</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>406</event_incident_typefk><coordinates><value>26</value><value>64</value></coordinates><elapsed>45</elapsed><player2>36086</player2><subtype>header</subtype><player1>196366</player1><sortorder>6</sortorder><team>8722</team><id>4208366</id><n>291</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>29</value><value>4</value></coordinates><elapsed>67</elapsed><player2>30924</player2><subtype>header</subtype><player1>30834</player1><sortorder>1</sortorder><team>9823</team><id>4208564</id><n>435</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>25</value><value>1</value></coordinates><elapsed>75</elapsed><player2>30834</player2><subtype>tap_in</subtype><player1>93447</player1><sortorder>6</sortorder><team>9823</team><id>4208623</id><n>482</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>14</value><value>8</value></coordinates><elapsed>59</elapsed><player2>91984</player2><subtype>shot</subtype><player1>27155</player1><sortorder>5</sortorder><team>8177</team><id>3868649</id><n>258</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>21</value><value>2</value></coordinates><elapsed>65</elapsed><subtype>shot</subtype><player1>30839</player1><sortorder>3</sortorder><team>8177</team><id>3868742</id><n>194</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>6</value></coordinates><elapsed>85</elapsed><player2>40108</player2><subtype>shot</subtype><player1>27155</player1><sortorder>1</sortorder><team>8177</team><id>3869196</id><n>243</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>58</elapsed><player1>36132</player1><sortorder>0</sortorder><team>10269</team><id>1540698</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>61</elapsed><player1>20694</player1><sortorder>0</sortorder><team>10269</team><id>1540762</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>66</elapsed><player1>94916</player1><sortorder>0</sortorder><team>9904</team><id>1540792</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>54</elapsed><player2>155384</player2><subtype>shot</subtype><player1>193869</player1><sortorder>3</sortorder><team>8559</team><id>1352549</id><n>212</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>80</elapsed><player2>25948</player2><subtype>shot</subtype><player1>26631</player1><sortorder>1</sortorder><team>8528</team><id>1353040</id><n>232</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>61</elapsed><player1>95094</player1><sortorder>0</sortorder><team>8406</team><id>2728031</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>83</elapsed><player1>45464</player1><sortorder>0</sortorder><team>8406</team><id>2728250</id><n>32</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>86</elapsed><player1>242308</player1><sortorder>0</sortorder><team>8406</team><id>2728322</id><n>31</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>33</elapsed><player1>150968</player1><sortorder>0</sortorder><team>8394</team><id>1202632</id><n>145</n><type>goal</type><goal_type>o</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>49</elapsed><player1>24383</player1><sortorder>0</sortorder><team>9869</team><id>1202805</id><n>161</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>57</elapsed><player2>33635</player2><subtype>shot</subtype><player1>38700</player1><sortorder>0</sortorder><team>8394</team><id>1202863</id><n>169</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>61</elapsed><player2>38379</player2><subtype>shot</subtype><player1>38700</player1><sortorder>3</sortorder><team>8394</team><id>1202893</id><n>174</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>37</elapsed><player1>38920</player1><sortorder>0</sortorder><team>8533</team><id>3283632</id><n>22</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>68</elapsed><player2>42579</player2><player1>42651</player1><sortorder>0</sortorder><team>8533</team><id>3284030</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>1</elapsed><player1>49677</player1><sortorder>0</sortorder><team>9875</team><id>1743444</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>25</elapsed><player1>39284</player1><sortorder>0</sortorder><team>8530</team><id>1743639</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>48</elapsed><player1>37273</player1><sortorder>0</sortorder><team>8530</team><id>1744011</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>29</elapsed><player1>26242</player1><sortorder>0</sortorder><team>8481</team><id>1573059</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>46242</player1><sortorder>0</sortorder><team>8481</team><id>1573117</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>49</elapsed><player1>26242</player1><sortorder>0</sortorder><team>8481</team><id>1573173</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>26300</player1><sortorder>0</sortorder><team>8481</team><id>1573336</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>13</value><value>14</value></coordinates><elapsed>61</elapsed><subtype>direct_freekick</subtype><player1>96398</player1><sortorder>0</sortorder><team>8686</team><id>4729069</id><n>341</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>5</value></coordinates><elapsed>79</elapsed><player2>161015</player2><subtype>header</subtype><player1>15403</player1><sortorder>1</sortorder><team>8686</team><id>4729274</id><n>443</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>23</value><value>64</value></coordinates><elapsed>88</elapsed><player2>210278</player2><subtype>volley</subtype><player1>325916</player1><sortorder>1</sortorder><team>9885</team><id>4729393</id><n>493</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>4</elapsed><player1>27657</player1><sortorder>0</sortorder><team>8543</team><id>1025555</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>38</elapsed><player1>41658</player1><sortorder>0</sortorder><team>9875</team><id>1025906</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>11</elapsed><player1>39428</player1><sortorder>0</sortorder><team>9888</team><id>659707</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>25</elapsed><player1>24456</player1><sortorder>0</sortorder><team>9888</team><id>659885</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>47</elapsed><player1>96534</player1><sortorder>0</sortorder><team>8530</team><id>660191</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>14</elapsed><player1>158257</player1><sortorder>0</sortorder><team>9810</team><id>2981832</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player1>158257</player1><sortorder>0</sortorder><team>9810</team><id>2981981</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>77</elapsed><player1>41927</player1><sortorder>0</sortorder><team>8697</team><id>2982743</id><n>19</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>27</elapsed><player2>94652</player2><subtype>shot</subtype><player1>144993</player1><sortorder>1</sortorder><team>9789</team><id>1830010</id><n>245</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>60</elapsed><player2>34971</player2><subtype>volley</subtype><player1>36253</player1><sortorder>5</sortorder><team>8350</team><id>1830607</id><n>278</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>32</value><value>58</value></coordinates><elapsed>2</elapsed><player2>574633</player2><subtype>shot</subtype><player1>294859</player1><sortorder>0</sortorder><team>9831</team><id>5607750</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>8</value></coordinates><elapsed>19</elapsed><player2>26330</player2><subtype>shot</subtype><player1>26374</player1><sortorder>2</sortorder><team>9747</team><id>5608246</id><n>84</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>288</event_incident_typefk><coordinates><value>26</value><value>56</value></coordinates><elapsed>45</elapsed><subtype>deflected</subtype><player1>470539</player1><sortorder>1</sortorder><team>9831</team><id>5608903</id><n>164</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>24</value><value>15</value></coordinates><elapsed>55</elapsed><player1>93485</player1><sortorder>0</sortorder><team>9831</team><id>5609231</id><n>194</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>60</value></coordinates><elapsed>62</elapsed><player2>26163</player2><subtype>shot</subtype><player1>294859</player1><sortorder>0</sortorder><team>9831</team><id>5609407</id><n>229</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>37408</player1><sortorder>0</sortorder><team>8315</team><id>1672844</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>52</elapsed><player1>25986</player1><sortorder>0</sortorder><team>10205</team><id>1672982</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>3</value></coordinates><elapsed>67</elapsed><player2>109621</player2><subtype>header</subtype><player1>26392</player1><sortorder>0</sortorder><team>8302</team><id>5538661</id><n>408</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><coordinates><value>19</value><value>7</value></coordinates><elapsed>77</elapsed><subtype>shot</subtype><player1>154232</player1><sortorder>1</sortorder><team>8302</team><id>5538825</id><n>455</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>22</value><value>15</value></coordinates><elapsed>80</elapsed><player2>40940</player2><subtype>distance</subtype><player1>151063</player1><sortorder>2</sortorder><team>8302</team><id>5538881</id><n>490</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>42</elapsed><player2>26813</player2><player1>209373</player1><sortorder>0</sortorder><team>10217</team><id>4187521</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>58</elapsed><player2>101042</player2><player1>154268</player1><sortorder>0</sortorder><team>10217</team><id>4187827</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>71</elapsed><player2>186837</player2><player1>209413</player1><sortorder>0</sortorder><team>6413</team><id>4187943</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player2>442731</player2><player1>244458</player1><sortorder>1</sortorder><team>6413</team><id>4188243</id><n>50</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player2>109647</player2><player1>110161</player1><sortorder>2</sortorder><team>10217</team><id>4188263</id><n>49</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>31</elapsed><player2>192625</player2><player1>25819</player1><sortorder>0</sortorder><team>9788</team><id>3320346</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>40</elapsed><player2>38398</player2><player1>58346</player1><sortorder>0</sortorder><team>9788</team><id>3320460</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>77</elapsed><player1>387727</player1><sortorder>0</sortorder><team>9789</team><id>3321103</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>35</elapsed><player2>35327</player2><subtype>volley</subtype><player1>24148</player1><sortorder>1</sortorder><team>10260</team><id>845150</id><n>255</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><elapsed>56</elapsed><subtype>shot</subtype><player1>39618</player1><sortorder>0</sortorder><team>8668</team><id>845507</id><n>137</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>67</elapsed><player2>24154</player2><subtype>shot</subtype><player1>34944</player1><sortorder>4</sortorder><team>10260</team><id>845602</id><n>287</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>76</elapsed><player2>30373</player2><subtype>shot</subtype><player1>35327</player1><sortorder>1</sortorder><team>10260</team><id>845641</id><n>292</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>70</elapsed><subtype>shot</subtype><player1>175947</player1><sortorder>0</sortorder><team>8472</team><id>1929713</id><n>268</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>75</elapsed><player2>24011</player2><subtype>distance</subtype><player1>75489</player1><sortorder>1</sortorder><team>9825</team><id>1929763</id><n>253</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>721</event_incident_typefk><elapsed>90</elapsed><player2>3520</player2><subtype>tap_in</subtype><player1>30626</player1><sortorder>2</sortorder><team>9825</team><id>1929958</id><n>276</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>30</elapsed><player2>30829</player2><subtype>header</subtype><player1>30362</player1><sortorder>4</sortorder><team>10260</team><id>434680</id><n>245</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>64</elapsed><player2>30893</player2><subtype>shot</subtype><player1>30829</player1><sortorder>1</sortorder><team>10260</team><id>435007</id><n>273</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><coordinates><value>24</value><value>10</value></coordinates><elapsed>25</elapsed><subtype>volley</subtype><player1>157729</player1><sortorder>3</sortorder><team>10003</team><id>5472144</id><n>156</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player1>40758</player1><sortorder>0</sortorder><team>9873</team><id>2385242</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>35</elapsed><player1>37466</player1><sortorder>0</sortorder><team>9873</team><id>2385275</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>39</elapsed><player1>102699</player1><sortorder>0</sortorder><team>9873</team><id>2385289</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>63</elapsed><player1>37466</player1><sortorder>0</sortorder><team>9873</team><id>2385389</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>154280</player1><sortorder>0</sortorder><team>8592</team><id>2385527</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>13</elapsed><player1>42645</player1><sortorder>0</sortorder><team>8524</team><id>1006082</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>50</elapsed><player1>34969</player1><sortorder>0</sortorder><team>8524</team><id>1006492</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>54</elapsed><player1>39190</player1><sortorder>0</sortorder><team>8524</team><id>1006567</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>29</elapsed><player1>213486</player1><sortorder>0</sortorder><team>7878</team><id>2796952</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>63</elapsed><player1>161291</player1><sortorder>0</sortorder><team>7878</team><id>2797056</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>27</elapsed><player2>73448</player2><player1>27427</player1><sortorder>0</sortorder><team>8178</team><id>3441649</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>36</elapsed><player2>516846</player2><player1>307021</player1><sortorder>0</sortorder><team>8178</team><id>3441771</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>dg</comment><event_incident_typefk>301</event_incident_typefk><coordinates><value>21</value><value>3</value></coordinates><elapsed>22</elapsed><subtype>volley</subtype><player1>231176</player1><sortorder>2</sortorder><team>10233</team><id>5614527</id><n>100</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>63</value></coordinates><elapsed>52</elapsed><player2>45220</player2><subtype>shot</subtype><player1>182836</player1><sortorder>4</sortorder><team>8524</team><id>5615006</id><n>227</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>25</value><value>4</value></coordinates><elapsed>58</elapsed><player2>110378</player2><subtype>volley</subtype><player1>231176</player1><sortorder>2</sortorder><team>10233</team><id>5615091</id><n>271</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><coordinates><value>14</value><value>66</value></coordinates><elapsed>65</elapsed><subtype>shot</subtype><player1>182836</player1><sortorder>1</sortorder><team>8524</team><id>5615215</id><n>326</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>21</value><value>66</value></coordinates><elapsed>82</elapsed><player2>45220</player2><subtype>tap_in</subtype><player1>210932</player1><sortorder>4</sortorder><team>8524</team><id>5615574</id><n>415</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>61</value></coordinates><elapsed>24</elapsed><player2>178804</player2><subtype>shot</subtype><player1>287231</player1><sortorder>3</sortorder><team>9905</team><id>5253811</id><n>163</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>14</elapsed><player1>35831</player1><sortorder>0</sortorder><team>10190</team><id>5375525</id><n>9</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>41</elapsed><player1>119839</player1><sortorder>0</sortorder><team>10190</team><id>5375731</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>13</elapsed><player2>23499</player2><subtype>shot</subtype><player1>47194</player1><sortorder>1</sortorder><team>9850</team><id>2046854</id><n>239</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>33</elapsed><player2>115681</player2><subtype>shot</subtype><player1>30348</player1><sortorder>1</sortorder><team>8586</team><id>2047105</id><n>257</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>66</elapsed><player2>24903</player2><subtype>shot</subtype><player1>96456</player1><sortorder>0</sortorder><team>9850</team><id>2047603</id><n>326</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>27</elapsed><player1>41749</player1><sortorder>0</sortorder><team>9857</team><id>868501</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>27734</player1><sortorder>0</sortorder><team>8600</team><id>868611</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>65</elapsed><player1>32749</player1><sortorder>0</sortorder><team>9857</team><id>868868</id><n>21</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>45</elapsed><player1>27234</player1><sortorder>0</sortorder><team>10269</team><id>3320498</id><n>6</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player1>29471</player1><sortorder>0</sortorder><team>10269</team><id>3320919</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player1>27316</player1><sortorder>0</sortorder><team>8697</team><id>3321133</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>dg</comment><event_incident_typefk>299</event_incident_typefk><coordinates><value>25</value><value>2</value></coordinates><elapsed>62</elapsed><subtype>header</subtype><player1>38573</player1><sortorder>3</sortorder><team>8305</team><id>3804600</id><n>171</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>13</value><value>62</value></coordinates><elapsed>78</elapsed><player2>178574</player2><subtype>shot</subtype><player1>179404</player1><sortorder>1</sortorder><team>7869</team><id>3804655</id><n>353</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>4</value></coordinates><elapsed>88</elapsed><player2>209950</player2><subtype>shot</subtype><player1>115798</player1><sortorder>3</sortorder><team>8305</team><id>3804683</id><n>364</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>37576</player1><sortorder>0</sortorder><team>9864</team><id>2788345</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>64</elapsed><player1>38822</player1><sortorder>0</sortorder><team>9864</team><id>2788442</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>75</elapsed><player1>208926</player1><sortorder>0</sortorder><team>9783</team><id>2788469</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>80</elapsed><player1>191315</player1><sortorder>0</sortorder><team>9864</team><id>2788483</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>9</elapsed><subtype>shot</subtype><player1>27734</player1><sortorder>3</sortorder><team>8600</team><id>529592</id><n>238</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>15</elapsed><subtype>shot</subtype><player1>39540</player1><sortorder>3</sortorder><team>8600</team><id>529631</id><n>248</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>55</elapsed><subtype>loose_ball</subtype><player1>27734</player1><sortorder>4</sortorder><team>8600</team><id>529920</id><n>289</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>60</elapsed><subtype>loose_ball</subtype><player1>18506</player1><sortorder>1</sortorder><team>8543</team><id>529953</id><n>296</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><elapsed>72</elapsed><subtype>header</subtype><player1>39331</player1><sortorder>2</sortorder><team>8543</team><id>530031</id><n>307</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>85</elapsed><subtype>distance</subtype><player1>39334</player1><sortorder>0</sortorder><team>8543</team><id>530116</id><n>323</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>52</elapsed><player2>25597</player2><subtype>shot</subtype><player1>24549</player1><sortorder>11</sortorder><team>8636</team><id>1469659</id><n>274</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>20</value><value>4</value></coordinates><elapsed>51</elapsed><player2>660010</player2><subtype>tap_in</subtype><player1>196484</player1><sortorder>1</sortorder><team>9882</team><id>4876180</id><n>338</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>64</value></coordinates><elapsed>76</elapsed><player2>282770</player2><subtype>shot</subtype><player1>163670</player1><sortorder>1</sortorder><team>8636</team><id>4876703</id><n>471</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>59</elapsed><player1>212867</player1><sortorder>0</sortorder><team>9790</team><id>2073659</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>65</elapsed><player1>141145</player1><sortorder>0</sortorder><team>8165</team><id>2073660</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>4</elapsed><player2>320672</player2><player1>303926</player1><sortorder>0</sortorder><team>10228</team><id>4284411</id><n>8</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>15</elapsed><player1>243439</player1><sortorder>0</sortorder><team>9791</team><id>4284522</id><n>11</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player2>212819</player2><player1>318809</player1><sortorder>0</sortorder><team>10228</team><id>4285238</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>74</elapsed><player2>212819</player2><player1>303926</player1><sortorder>0</sortorder><team>10228</team><id>4285500</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>81</elapsed><player2>318809</player2><player1>212819</player1><sortorder>0</sortorder><team>10228</team><id>4285623</id><n>31</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>17</value><value>17</value></coordinates><elapsed>21</elapsed><subtype>distance</subtype><player1>195335</player1><sortorder>3</sortorder><team>10268</team><id>4147077</id><n>165</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><elapsed_plus>1</elapsed_plus><event_incident_typefk>289</event_incident_typefk><coordinates><value>23</value><value>5</value></coordinates><elapsed>45</elapsed><sortorder>5</sortorder><team>10268</team><id>4147260</id><n>334</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>6</value></coordinates><elapsed>82</elapsed><player2>279173</player2><subtype>shot</subtype><player1>302912</player1><sortorder>2</sortorder><team>10268</team><id>4147530</id><n>610</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>19</elapsed><player1>41605</player1><sortorder>0</sortorder><team>10167</team><id>3019874</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>20</elapsed><player1>127460</player1><sortorder>0</sortorder><team>8524</team><id>3019876</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>28</elapsed><player1>73999</player1><sortorder>0</sortorder><team>10167</team><id>3019914</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>35</elapsed><player1>39345</player1><sortorder>0</sortorder><team>10167</team><id>3019934</id><n>31</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>40</elapsed><player1>73999</player1><sortorder>0</sortorder><team>10167</team><id>3019946</id><n>33</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>35421</player1><sortorder>0</sortorder><team>8524</team><id>3019950</id><n>32</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player1>206242</player1><sortorder>0</sortorder><team>8524</team><id>3020152</id><n>39</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>28</elapsed><player1>30886</player1><sortorder>0</sortorder><team>8177</team><id>593730</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>27336</player1><sortorder>0</sortorder><team>8177</team><id>593886</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>69</elapsed><player1>26472</player1><sortorder>0</sortorder><team>9788</team><id>594199</id><n>23</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>49</elapsed><player2>41194</player2><player1>46708</player1><sortorder>0</sortorder><team>4087</team><id>3310606</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>23</elapsed><player1>160906</player1><sortorder>0</sortorder><team>10218</team><id>3920112</id><n>3</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>33</elapsed><player2>510399</player2><player1>121642</player1><sortorder>0</sortorder><team>9908</team><id>3920145</id><n>6</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>84</elapsed><player1>45496</player1><sortorder>1</sortorder><team>9908</team><id>3920487</id><n>15</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>424363</player1><sortorder>0</sortorder><team>10218</team><id>3920527</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><elapsed>36</elapsed><subtype>header</subtype><player1>31292</player1><sortorder>2</sortorder><team>10261</team><id>3156617</id><n>233</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>53</elapsed><player2>23293</player2><subtype>shot</subtype><player1>23257</player1><sortorder>1</sortorder><team>8659</team><id>3156765</id><n>253</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>57</elapsed><player2>39987</player2><subtype>distance</subtype><player1>94550</player1><sortorder>0</sortorder><team>10261</team><id>3156778</id><n>256</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>16</elapsed><player1>591734</player1><sortorder>1</sortorder><team>8277</team><id>4975786</id><n>122</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>7</value><value>57</value></coordinates><elapsed>50</elapsed><player2>538499</player2><subtype>distance</subtype><player1>566158</player1><sortorder>0</sortorder><team>8277</team><id>4976958</id><n>466</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>67</value></coordinates><elapsed>54</elapsed><player2>278473</player2><subtype>shot</subtype><player1>660165</player1><sortorder>3</sortorder><team>8277</team><id>4977008</id><n>545</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>20</value><value>19</value></coordinates><elapsed>82</elapsed><subtype>distance</subtype><player1>161396</player1><sortorder>2</sortorder><team>9827</team><id>5427116</id><n>742</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>22</value><value>68</value></coordinates><elapsed>84</elapsed><player2>40758</player2><subtype>header</subtype><player1>352888</player1><sortorder>5</sortorder><team>7794</team><id>5427181</id><n>660</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player1>89475</player1><sortorder>0</sortorder><team>9873</team><id>3128895</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>192920</player1><sortorder>0</sortorder><team>10249</team><id>3129065</id><n>29</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>28</value><value>15</value></coordinates><elapsed>19</elapsed><player2>155066</player2><subtype>volley</subtype><player1>248453</player1><sortorder>4</sortorder><team>9885</team><id>4974473</id><n>120</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>29</value><value>56</value></coordinates><elapsed>52</elapsed><player2>195413</player2><subtype>distance</subtype><player1>39419</player1><sortorder>0</sortorder><team>9804</team><id>4975086</id><n>395</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>4</elapsed_plus><event_incident_typefk>721</event_incident_typefk><coordinates><value>25</value><value>1</value></coordinates><elapsed>90</elapsed><player2>157865</player2><subtype>tap_in</subtype><player1>155066</player1><sortorder>12</sortorder><team>9885</team><id>4975593</id><n>698</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>55</elapsed><subtype>shot</subtype><player1>24499</player1><sortorder>3</sortorder><team>10167</team><id>948910</id><n>393</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>60</elapsed><subtype>shot</subtype><player1>108808</player1><sortorder>1</sortorder><team>8636</team><id>948976</id><n>396</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>11</elapsed><player2>30618</player2><subtype>distance</subtype><player1>34036</player1><sortorder>0</sortorder><team>8650</team><id>2515780</id><n>281</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>36</elapsed><player1>37169</player1><sortorder>5</sortorder><team>8654</team><id>2515901</id><n>314</n><type>goal</type><goal_type>p</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>43</elapsed><player1>30618</player1><sortorder>2</sortorder><team>8650</team><id>2515934</id><n>325</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>76</elapsed><player2>246575</player2><subtype>shot</subtype><player1>30630</player1><sortorder>1</sortorder><team>8650</team><id>2516137</id><n>371</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>79</elapsed><player2>156008</player2><subtype>shot</subtype><player1>127130</player1><sortorder>1</sortorder><team>8650</team><id>2516152</id><n>375</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>17</value><value>6</value></coordinates><elapsed>78</elapsed><subtype>shot</subtype><player1>150565</player1><sortorder>1</sortorder><team>9789</team><id>4211549</id><n>451</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>20</value><value>3</value></coordinates><elapsed>79</elapsed><player2>178818</player2><subtype>tap_in</subtype><player1>73167</player1><sortorder>2</sortorder><team>9789</team><id>4211600</id><n>480</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>23</value><value>4</value></coordinates><elapsed>86</elapsed><subtype>shot</subtype><player1>129944</player1><sortorder>1</sortorder><team>9789</team><id>4211789</id><n>530</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>23</elapsed><player2>210398</player2><player1>473858</player1><sortorder>0</sortorder><team>9851</team><id>3241392</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>66</elapsed><player2>352887</player2><player1>39139</player1><sortorder>0</sortorder><team>9851</team><id>3241694</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>10</elapsed><player2>23934</player2><subtype>shot</subtype><player1>34261</player1><sortorder>2</sortorder><team>8559</team><id>991685</id><n>254</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>48</elapsed><player1>23934</player1><sortorder>0</sortorder><team>8559</team><id>992247</id><n>306</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>53</elapsed><player2>130670</player2><subtype>shot</subtype><player1>35532</player1><sortorder>1</sortorder><team>8559</team><id>992340</id><n>311</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>69</elapsed><subtype>shot</subtype><player1>24372</player1><sortorder>5</sortorder><team>8559</team><id>992614</id><n>334</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><coordinates><value>20</value><value>13</value></coordinates><elapsed>70</elapsed><subtype>volley</subtype><player1>185175</player1><sortorder>5</sortorder><team>8178</team><id>5498120</id><n>410</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>7</value></coordinates><elapsed>76</elapsed><player2>208230</player2><subtype>shot</subtype><player1>516846</player1><sortorder>5</sortorder><team>8178</team><id>5498217</id><n>469</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>13</value></coordinates><elapsed>90</elapsed><player2>50638</player2><subtype>shot</subtype><player1>208230</player1><sortorder>1</sortorder><team>8178</team><id>5498642</id><n>535</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player1>155623</player1><sortorder>0</sortorder><team>9874</team><id>2151356</id><n>14</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>12</elapsed><player1>39488</player1><sortorder>0</sortorder><team>8540</team><id>1963263</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>23</elapsed><player1>41874</player1><sortorder>0</sortorder><team>8551</team><id>1963342</id><n>27</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player1>39638</player1><sortorder>0</sortorder><team>8551</team><id>1963397</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>46</elapsed><player1>74009</player1><sortorder>0</sortorder><team>8551</team><id>1963991</id><n>35</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>58</elapsed><player1>27663</player1><sortorder>0</sortorder><team>8551</team><id>1963992</id><n>36</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>38</elapsed><player2>351999</player2><player1>281110</player1><sortorder>0</sortorder><team>9791</team><id>4129287</id><n>11</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>66</elapsed><player2>484858</player2><player1>179239</player1><sortorder>0</sortorder><team>8674</team><id>4129372</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>75</elapsed><player2>147594</player2><player1>351999</player1><sortorder>2</sortorder><team>9791</team><id>4129407</id><n>33</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>88</elapsed><player2>359461</player2><player1>117541</player1><sortorder>0</sortorder><team>8674</team><id>4129450</id><n>43</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player1>26392</player1><sortorder>0</sortorder><team>8689</team><id>1315151</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>12</elapsed><player1>26332</player1><sortorder>0</sortorder><team>8639</team><id>1315259</id><n>34</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>18</elapsed><player1>46645</player1><sortorder>0</sortorder><team>8689</team><id>1315295</id><n>32</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>26392</player1><sortorder>0</sortorder><team>8689</team><id>1315655</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>49</elapsed><player1>26332</player1><sortorder>0</sortorder><team>8639</team><id>1315859</id><n>31</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>57</elapsed><player1>97699</player1><sortorder>0</sortorder><team>8689</team><id>1315888</id><n>35</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>58</elapsed><player1>37950</player1><sortorder>0</sortorder><team>8639</team><id>1315900</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>82</elapsed><player1>26332</player1><sortorder>0</sortorder><team>8639</team><id>1316229</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>88</elapsed><player1>35407</player1><sortorder>0</sortorder><team>8639</team><id>1316256</id><n>36</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>18</elapsed><player1>38398</player1><sortorder>0</sortorder><team>9788</team><id>3365416</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>79</elapsed><player1>58346</player1><sortorder>0</sortorder><team>9788</team><id>3366265</id><n>21</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>9</elapsed><player2>37469</player2><subtype>shot</subtype><player1>32675</player1><sortorder>3</sortorder><team>8305</team><id>1563051</id><n>182</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>66</elapsed><player2>33973</player2><subtype>header</subtype><player1>150831</player1><sortorder>1</sortorder><team>8560</team><id>1563844</id><n>238</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>47</elapsed><player1>56678</player1><sortorder>0</sortorder><team>9906</team><id>2001906</id><n>21</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>49</elapsed><player1>200630</player1><sortorder>0</sortorder><team>8661</team><id>2001907</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>54</elapsed><player1>22543</player1><sortorder>0</sortorder><team>9906</team><id>2001998</id><n>8</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>66</elapsed><player1>22543</player1><sortorder>0</sortorder><team>9906</team><id>2002094</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>27</elapsed><player1>179845</player1><sortorder>0</sortorder><team>7819</team><id>1556334</id><n>14</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>69</elapsed><player1>46662</player1><sortorder>0</sortorder><team>7819</team><id>1556967</id><n>15</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>22</value><value>2</value></coordinates><elapsed>59</elapsed><player2>192316</player2><subtype>tap_in</subtype><player1>352994</player1><sortorder>1</sortorder><team>8689</team><id>4078750</id><n>303</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>63</value></coordinates><elapsed>59</elapsed><player2>187017</player2><subtype>shot</subtype><player1>25759</player1><sortorder>1</sortorder><team>9875</team><id>4957891</id><n>273</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>16</value><value>4</value></coordinates><elapsed>27</elapsed><player1>180784</player1><sortorder>1</sortorder><team>7788</team><id>5312610</id><n>180</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>31</value><value>15</value></coordinates><elapsed>31</elapsed><subtype>distance</subtype><player1>211020</player1><sortorder>2</sortorder><team>8611</team><id>5312714</id><n>289</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>90</elapsed><player1>360559</player1><sortorder>10</sortorder><team>8611</team><id>5313653</id><n>521</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>1</elapsed><player2>28467</player2><subtype>distance</subtype><player1>34602</player1><sortorder>3</sortorder><team>8633</team><id>449237</id><n>294</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><elapsed>21</elapsed><subtype>shot</subtype><player1>34602</player1><sortorder>5</sortorder><team>8633</team><id>449329</id><n>36</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>90</elapsed><subtype>direct_freekick</subtype><player1>30663</player1><sortorder>0</sortorder><team>9906</team><id>449559</id><n>393</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><elapsed_plus>6</elapsed_plus><event_incident_typefk>20</event_incident_typefk><elapsed>90</elapsed><player1>25759</player1><sortorder>2</sortorder><team>8633</team><id>449579</id><n>332</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>31</elapsed><player1>31304</player1><sortorder>0</sortorder><team>9880</team><id>1420475</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>64</elapsed><player1>35561</player1><sortorder>0</sortorder><team>10167</team><id>1420865</id><n>21</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>78</elapsed><player1>33706</player1><sortorder>0</sortorder><team>9880</team><id>1421000</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player1>41413</player1><sortorder>0</sortorder><team>10167</team><id>1421124</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>23</value><value>66</value></coordinates><elapsed>56</elapsed><player2>192712</player2><subtype>volley</subtype><player1>105919</player1><sortorder>1</sortorder><team>9908</team><id>5504563</id><n>461</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>25</value><value>53</value></coordinates><elapsed>84</elapsed><player2>614453</player2><subtype>distance</subtype><player1>611532</player1><sortorder>3</sortorder><team>9908</team><id>5504891</id><n>526</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>22</value><value>13</value></coordinates><elapsed>86</elapsed><player2>264860</player2><subtype>distance</subtype><player1>298448</player1><sortorder>0</sortorder><team>8593</team><id>5504905</id><n>538</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>89</elapsed><player1>277460</player1><sortorder>0</sortorder><team>8593</team><id>5504953</id><n>542</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>12</value></coordinates><elapsed>8</elapsed><player2>45204</player2><subtype>shot</subtype><player1>254702</player1><sortorder>6</sortorder><team>9865</team><id>4402790</id><n>66</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>68</elapsed><player1>38469</player1><sortorder>0</sortorder><team>9865</team><id>4403848</id><n>283</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>88</elapsed><player1>46836</player1><sortorder>0</sortorder><team>8581</team><id>3078740</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>50</elapsed><player1>79982</player1><sortorder>0</sortorder><team>9790</team><id>2644561</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>4</elapsed><player2>212893</player2><player1>242709</player1><sortorder>0</sortorder><team>8226</team><id>3237366</id><n>15</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player2>36011</player2><player1>447084</player1><sortorder>0</sortorder><team>8226</team><id>3237626</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>60</elapsed><player2>242709</player2><player1>39841</player1><sortorder>0</sortorder><team>8226</team><id>3238047</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>27</value><value>6</value></coordinates><elapsed>2</elapsed><player1>150739</player1><sortorder>5</sortorder><team>8634</team><id>4048919</id><n>141</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>20</elapsed><player2>40100</player2><subtype>shot</subtype><player1>24698</player1><sortorder>5</sortorder><team>9850</team><id>2426319</id><n>141</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>61</value></coordinates><elapsed>15</elapsed><player2>34267</player2><subtype>shot</subtype><player1>71605</player1><sortorder>2</sortorder><team>8226</team><id>3851016</id><n>357</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>32</value><value>10</value></coordinates><elapsed>34</elapsed><player2>178781</player2><subtype>shot</subtype><player1>193530</player1><sortorder>2</sortorder><team>9790</team><id>3851223</id><n>373</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>26</value><value>3</value></coordinates><elapsed>20</elapsed><player2>47565</player2><subtype>tap_in</subtype><player1>46289</player1><sortorder>1</sortorder><team>8560</team><id>4797791</id><n>63</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>44</elapsed><player1>246438</player1><sortorder>0</sortorder><team>8558</team><id>4797941</id><n>146</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>23</value><value>63</value></coordinates><elapsed>71</elapsed><player2>88986</player2><subtype>header</subtype><player1>193930</player1><sortorder>3</sortorder><team>8558</team><id>4798040</id><n>288</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>8</value></coordinates><elapsed>86</elapsed><player2>56686</player2><subtype>shot</subtype><player1>128732</player1><sortorder>1</sortorder><team>8560</team><id>4798078</id><n>388</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>406</event_incident_typefk><coordinates><value>19</value><value>67</value></coordinates><elapsed>90</elapsed><player2>257855</player2><subtype>header</subtype><player1>88986</player1><sortorder>2</sortorder><team>8558</team><id>4798086</id><n>371</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>80</elapsed><player1>304733</player1><sortorder>0</sortorder><team>9790</team><id>3324460</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>86</elapsed><player1>37042</player1><sortorder>0</sortorder><team>8165</team><id>3324501</id><n>20</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player2>36035</player2><player1>194533</player1><sortorder>0</sortorder><team>8165</team><id>3324559</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>24</elapsed><subtype>direct_freekick</subtype><player1>32118</player1><sortorder>0</sortorder><team>8722</team><id>1715376</id><n>282</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>288</event_incident_typefk><elapsed>86</elapsed><subtype>deflected</subtype><player1>32118</player1><sortorder>0</sortorder><team>8722</team><id>1716026</id><n>375</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>58</value></coordinates><elapsed>60</elapsed><player2>29866</player2><subtype>shot</subtype><player1>242958</player1><sortorder>4</sortorder><team>9853</team><id>5217496</id><n>268</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>4</value></coordinates><elapsed>89</elapsed><player2>29259</player2><subtype>shot</subtype><player1>210683</player1><sortorder>6</sortorder><team>9837</team><id>5217817</id><n>421</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>29</elapsed><player1>42005</player1><sortorder>3</sortorder><team>6269</team><id>1794165</id><n>289</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>70</elapsed><player2>41394</player2><subtype>header</subtype><player1>5223</player1><sortorder>1</sortorder><team>6269</team><id>1794816</id><n>339</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>78</elapsed><player2>159606</player2><subtype>header</subtype><player1>41394</player1><sortorder>4</sortorder><team>6269</team><id>1794898</id><n>352</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>9</value></coordinates><elapsed>72</elapsed><player2>41157</player2><subtype>shot</subtype><player1>294003</player1><sortorder>1</sortorder><team>10205</team><id>4195776</id><n>306</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>24</elapsed><player2>26852</player2><player1>49677</player1><sortorder>0</sortorder><team>9847</team><id>3426031</id><n>15</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>57</elapsed><player1>80562</player1><sortorder>0</sortorder><team>9847</team><id>3426437</id><n>17</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>32</elapsed><player1>27514</player1><sortorder>0</sortorder><team>9911</team><id>740115</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>41</elapsed><player1>27492</player1><sortorder>0</sortorder><team>8178</team><id>740214</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>68</elapsed><player1>31199</player1><sortorder>0</sortorder><team>8178</team><id>740612</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>3</elapsed><player1>36840</player1><sortorder>0</sortorder><team>9829</team><id>1406403</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>22</elapsed><player1>26392</player1><sortorder>0</sortorder><team>8689</team><id>1406603</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player1>41098</player1><sortorder>0</sortorder><team>9829</team><id>1407118</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>90</elapsed><player1>31092</player1><sortorder>0</sortorder><team>9829</team><id>1407263</id><n>26</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>30908</player1><sortorder>0</sortorder><team>9831</team><id>1317325</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>26</elapsed><player1>36076</player1><sortorder>0</sortorder><team>9810</team><id>887596</id><n>13</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>37</elapsed><player1>15403</player1><sortorder>0</sortorder><team>8721</team><id>887700</id><n>14</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>69</elapsed><player1>19511</player1><sortorder>0</sortorder><team>8721</team><id>888140</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player1>27478</player1><sortorder>0</sortorder><team>9810</team><id>888205</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>11</elapsed><player1>11555</player1><sortorder>0</sortorder><team>9865</team><id>2951094</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>32</elapsed><player1>74757</player1><sortorder>0</sortorder><team>10268</team><id>2951162</id><n>28</n><type>goal</type><goal_type>p</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>45</elapsed><player1>38469</player1><sortorder>1</sortorder><team>9865</team><id>2951180</id><n>32</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>198583</player1><sortorder>6</sortorder><team>10268</team><id>2951300</id><n>37</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>32</value><value>58</value></coordinates><elapsed>35</elapsed><player2>469764</player2><subtype>shot</subtype><player1>49825</player1><sortorder>5</sortorder><team>8697</team><id>4231547</id><n>394</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>25</elapsed><player1>39295</player1><sortorder>0</sortorder><team>9882</team><id>2958370</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>41</elapsed><player1>42425</player1><sortorder>0</sortorder><team>9857</team><id>2958428</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>64</elapsed><player1>39450</player1><sortorder>0</sortorder><team>9857</team><id>2958589</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>71</elapsed><player1>172899</player1><sortorder>0</sortorder><team>9882</team><id>2958628</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>7</value></coordinates><elapsed>4</elapsed><player2>41280</player2><subtype>shot</subtype><player1>23293</player1><sortorder>1</sortorder><team>8466</team><id>5471419</id><n>51</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>9</value></coordinates><elapsed>38</elapsed><player2>23293</player2><subtype>shot</subtype><player1>41280</player1><sortorder>5</sortorder><team>8466</team><id>5472530</id><n>341</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>26</value><value>7</value></coordinates><elapsed>55</elapsed><subtype>shot</subtype><player1>166676</player1><sortorder>7</sortorder><team>8466</team><id>5473577</id><n>495</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>19</value><value>56</value></coordinates><elapsed>65</elapsed><player2>109652</player2><subtype>distance</subtype><player1>166422</player1><sortorder>3</sortorder><team>10261</team><id>5473929</id><n>606</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>7</elapsed><player2>36057</player2><subtype>header</subtype><player1>95081</player1><sortorder>0</sortorder><team>8406</team><id>2078486</id><n>221</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>38</elapsed><player2>171698</player2><subtype>shot</subtype><player1>36784</player1><sortorder>3</sortorder><team>10189</team><id>2078746</id><n>250</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>10</elapsed><player2>27512</player2><player1>107588</player1><sortorder>0</sortorder><team>8697</team><id>3421191</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>20</elapsed><player2>25366</player2><player1>30924</player1><sortorder>0</sortorder><team>9823</team><id>3421239</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>36</elapsed><player2>49825</player2><player1>27316</player1><sortorder>0</sortorder><team>8697</team><id>3421416</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>53</elapsed><player2>116772</player2><player1>25366</player1><sortorder>0</sortorder><team>9823</team><id>3421977</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>57</elapsed><player2>121633</player2><player1>25366</player1><sortorder>0</sortorder><team>9823</team><id>3422067</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>61</elapsed><player2>30894</player2><player1>30872</player1><sortorder>0</sortorder><team>9823</team><id>3422101</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>74</elapsed><player1>30834</player1><sortorder>0</sortorder><team>9823</team><id>3422216</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>16</value><value>12</value></coordinates><elapsed>28</elapsed><player2>211091</player2><subtype>distance</subtype><player1>270774</player1><sortorder>4</sortorder><team>8540</team><id>5616649</id><n>222</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>14</value><value>62</value></coordinates><elapsed>48</elapsed><player2>178603</player2><subtype>shot</subtype><player1>251384</player1><sortorder>2</sortorder><team>9876</team><id>5616804</id><n>296</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>26</value><value>4</value></coordinates><elapsed>51</elapsed><player2>130113</player2><subtype>header</subtype><player1>34000</player1><sortorder>2</sortorder><team>8540</team><id>5616823</id><n>314</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>22</value><value>4</value></coordinates><elapsed>64</elapsed><player2>130113</player2><subtype>header</subtype><player1>30881</player1><sortorder>2</sortorder><team>8540</team><id>5616892</id><n>362</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>19</value><value>66</value></coordinates><elapsed>84</elapsed><player2>251384</player2><subtype>volley</subtype><player1>97789</player1><sortorder>2</sortorder><team>9876</team><id>5617001</id><n>434</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><coordinates><value>24</value><value>2</value></coordinates><elapsed>19</elapsed><subtype>header</subtype><player1>167027</player1><sortorder>2</sortorder><team>8592</team><id>4708177</id><n>93</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>26</value><value>15</value></coordinates><elapsed>47</elapsed><player2>167027</player2><subtype>distance</subtype><player1>23988</player1><sortorder>2</sortorder><team>8592</team><id>4709166</id><n>226</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>15</value><value>8</value></coordinates><elapsed>56</elapsed><player2>199834</player2><subtype>shot</subtype><player1>248689</player1><sortorder>1</sortorder><team>8592</team><id>4709416</id><n>261</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>390</event_incident_typefk><coordinates><value>19</value><value>6</value></coordinates><elapsed>63</elapsed><player2>210398</player2><subtype>bicycle_kick</subtype><player1>357080</player1><sortorder>2</sortorder><team>8592</team><id>4709611</id><n>299</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>5</value></coordinates><elapsed>88</elapsed><player2>248689</player2><subtype>shot</subtype><player1>210398</player1><sortorder>1</sortorder><team>8592</team><id>4710098</id><n>437</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>5</value></coordinates><elapsed>90</elapsed><player2>210398</player2><subtype>shot</subtype><player1>248689</player1><sortorder>1</sortorder><team>8592</team><id>4710109</id><n>433</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>64</value></coordinates><elapsed>4</elapsed><player2>237631</player2><subtype>header</subtype><player1>491883</player1><sortorder>2</sortorder><team>9831</team><id>4347561</id><n>54</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player1>25759</player1><sortorder>0</sortorder><team>8633</team><id>2788309</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>57</elapsed><player1>150330</player1><sortorder>0</sortorder><team>8633</team><id>2788418</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>64</elapsed><player1>282678</player1><sortorder>0</sortorder><team>8560</team><id>2788440</id><n>25</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>78</elapsed><player1>184138</player1><sortorder>0</sortorder><team>8560</team><id>2788479</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>80</elapsed><player1>42346</player1><sortorder>0</sortorder><team>8633</team><id>2788480</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>33973</player1><sortorder>0</sortorder><team>8560</team><id>2788528</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>8</elapsed><player1>39987</player1><sortorder>0</sortorder><team>8592</team><id>1326549</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>40</elapsed><player1>36121</player1><sortorder>0</sortorder><team>8583</team><id>1326611</id><n>24</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>28</value><value>5</value></coordinates><elapsed>16</elapsed><player2>34008</player2><subtype>shot</subtype><player1>39540</player1><sortorder>2</sortorder><team>9804</team><id>4116962</id><n>93</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>29</elapsed><player1>39540</player1><sortorder>3</sortorder><team>9804</team><id>4117259</id><n>159</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>33</value><value>7</value></coordinates><elapsed>65</elapsed><player2>362113</player2><subtype>shot</subtype><player1>39540</player1><sortorder>3</sortorder><team>9804</team><id>4118271</id><n>375</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><coordinates><value>26</value><value>6</value></coordinates><elapsed>75</elapsed><subtype>loose_ball</subtype><player1>38827</player1><sortorder>4</sortorder><team>9804</team><id>4118468</id><n>421</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>889</event_incident_typefk><coordinates><value>21</value><value>65</value></coordinates><elapsed>77</elapsed><player2>25587</player2><subtype>backheel</subtype><player1>163919</player1><sortorder>1</sortorder><team>9882</team><id>4118510</id><n>490</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>393</event_incident_typefk><coordinates><value>33</value><value>8</value></coordinates><elapsed>90</elapsed><player2>362113</player2><subtype>shot</subtype><player1>267911</player1><sortorder>9</sortorder><team>9804</team><id>4118825</id><n>541</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>24</elapsed><player2>30822</player2><subtype>header</subtype><player1>31906</player1><sortorder>1</sortorder><team>8455</team><id>1062217</id><n>243</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>391</event_incident_typefk><elapsed>31</elapsed><player2>30631</player2><subtype>loose_ball</subtype><player1>31906</player1><sortorder>4</sortorder><team>8455</team><id>1062322</id><n>253</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>44</elapsed><player1>30631</player1><sortorder>0</sortorder><team>8455</team><id>1062464</id><n>258</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>68</elapsed><subtype>shot</subtype><player1>31906</player1><sortorder>1</sortorder><team>8455</team><id>1062790</id><n>305</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>81</elapsed><player2>78505</player2><subtype>shot</subtype><player1>30631</player1><sortorder>1</sortorder><team>8455</team><id>1062875</id><n>306</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>87</elapsed><player2>30822</player2><subtype>shot</subtype><player1>51553</player1><sortorder>1</sortorder><team>8455</team><id>1062930</id><n>308</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>89</elapsed><player2>30630</player2><subtype>shot</subtype><player1>30679</player1><sortorder>3</sortorder><team>8455</team><id>1062940</id><n>314</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>4</elapsed><player2>40605</player2><player1>50345</player1><sortorder>0</sortorder><team>8177</team><id>3240829</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>20</elapsed><player1>36035</player1><sortorder>0</sortorder><team>8165</team><id>3240915</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>68</elapsed><player1>194533</player1><sortorder>0</sortorder><team>8165</team><id>3241269</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>90</elapsed><player1>194533</player1><sortorder>1</sortorder><team>8165</team><id>3241386</id><n>31</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>28</elapsed><player2>23792</player2><subtype>shot</subtype><player1>39225</player1><sortorder>1</sortorder><team>8466</team><id>3463936</id><n>194</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>54</elapsed><subtype>direct_freekick</subtype><player1>41468</player1><sortorder>0</sortorder><team>10260</team><id>3464889</id><n>222</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>62</value></coordinates><elapsed>7</elapsed><player2>107930</player2><subtype>shot</subtype><player1>88986</player1><sortorder>0</sortorder><team>8558</team><id>5493926</id><n>69</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>39</value><value>10</value></coordinates><elapsed>23</elapsed><subtype>direct_freekick</subtype><player1>38699</player1><sortorder>1</sortorder><team>8581</team><id>5494089</id><n>193</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>23</value><value>4</value></coordinates><elapsed>66</elapsed><player2>37441</player2><subtype>tap_in</subtype><player1>40721</player1><sortorder>2</sortorder><team>8581</team><id>5494517</id><n>514</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>11</elapsed><player1>29145</player1><sortorder>0</sortorder><team>10269</team><id>3226492</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>40</elapsed><player1>20694</player1><sortorder>0</sortorder><team>9905</team><id>3226531</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>87</elapsed><player1>435683</player1><sortorder>0</sortorder><team>9905</team><id>3226651</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>50</elapsed><player1>33022</player1><sortorder>0</sortorder><team>10281</team><id>570272</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>54</elapsed><player1>38065</player1><sortorder>0</sortorder><team>10281</team><id>570297</id><n>20</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>78</elapsed><player1>38471</player1><sortorder>0</sortorder><team>10281</team><id>570527</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player1>71353</player1><sortorder>0</sortorder><team>9788</team><id>478033</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>80</elapsed><player1>71353</player1><sortorder>0</sortorder><team>9788</team><id>478679</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>53</elapsed><subtype>shot</subtype><player1>30712</player1><sortorder>0</sortorder><team>9885</team><id>1061496</id><n>146</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>289</event_incident_typefk><elapsed>67</elapsed><sortorder>0</sortorder><team>9885</team><id>1061667</id><n>79</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>69</elapsed><player1>30727</player1><sortorder>2</sortorder><team>9885</team><id>1061702</id><n>158</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>87</elapsed><player2>11685</player2><subtype>shot</subtype><player1>30712</player1><sortorder>1</sortorder><team>9885</team><id>1061940</id><n>166</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>8</elapsed><player2>30889</player2><subtype>distance</subtype><player1>25759</player1><sortorder>3</sortorder><team>8633</team><id>904010</id><n>217</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>50</elapsed><player2>25759</player2><subtype>volley</subtype><player1>41156</player1><sortorder>2</sortorder><team>8633</team><id>904139</id><n>259</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>75</elapsed><player1>30646</player1><sortorder>0</sortorder><team>9864</team><id>3176761</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>59</elapsed><player1>30496</player1><sortorder>0</sortorder><team>9790</team><id>527216</id><n>15</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>9</elapsed><player1>30881</player1><sortorder>0</sortorder><team>9857</team><id>2370938</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>41</elapsed><player1>207617</player1><sortorder>0</sortorder><team>9878</team><id>2371117</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>65</elapsed><player1>41475</player1><sortorder>0</sortorder><team>9857</team><id>2371355</id><n>12</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>56</elapsed><subtype>shot</subtype><player1>184138</player1><sortorder>0</sortorder><team>8560</team><id>1874767</id><n>230</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>18</elapsed><subtype>direct_freekick</subtype><player1>39854</player1><sortorder>0</sortorder><team>8634</team><id>1999800</id><n>208</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>25</elapsed><player2>30955</player2><subtype>shot</subtype><player1>30981</player1><sortorder>2</sortorder><team>8634</team><id>1999837</id><n>203</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>288</event_incident_typefk><coordinates><value>28</value><value>14</value></coordinates><elapsed>64</elapsed><subtype>deflected</subtype><player1>42479</player1><sortorder>1</sortorder><team>10205</team><id>3998638</id><n>303</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>12</value><value>7</value></coordinates><elapsed>73</elapsed><player2>38044</player2><subtype>volley</subtype><player1>359197</player1><sortorder>4</sortorder><team>10205</team><id>3998698</id><n>233</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>7</value></coordinates><elapsed>80</elapsed><player2>359197</player2><subtype>shot</subtype><player1>262592</player1><sortorder>2</sortorder><team>10205</team><id>3998742</id><n>256</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>14</value><value>13</value></coordinates><elapsed>86</elapsed><player2>193978</player2><subtype>shot</subtype><player1>262592</player1><sortorder>1</sortorder><team>10205</team><id>3998783</id><n>270</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>25</value><value>6</value></coordinates><elapsed>27</elapsed><player2>155534</player2><subtype>header</subtype><player1>34420</player1><sortorder>2</sortorder><team>9810</team><id>4309360</id><n>188</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>30</value><value>4</value></coordinates><elapsed>54</elapsed><player2>170775</player2><subtype>shot</subtype><player1>38647</player1><sortorder>2</sortorder><team>9810</team><id>4310999</id><n>417</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>66</value></coordinates><elapsed>69</elapsed><player2>115847</player2><subtype>header</subtype><player1>78908</player1><sortorder>1</sortorder><team>9904</team><id>4311603</id><n>539</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>12</value><value>60</value></coordinates><elapsed>82</elapsed><player2>94916</player2><subtype>shot</subtype><player1>47357</player1><sortorder>1</sortorder><team>9904</team><id>4311990</id><n>624</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>72</elapsed><player2>49939</player2><subtype>shot</subtype><player1>41890</player1><sortorder>1</sortorder><team>9885</team><id>1813783</id><n>387</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>83</elapsed><player1>49939</player1><sortorder>0</sortorder><team>9885</team><id>1813950</id><n>389</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>7</elapsed><player1>96652</player1><sortorder>0</sortorder><team>8603</team><id>2297139</id><n>33</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>26</elapsed><player1>2983</player1><sortorder>0</sortorder><team>8603</team><id>2297246</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>31</elapsed><player1>45749</player1><sortorder>0</sortorder><team>8603</team><id>2297281</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>47</elapsed><player1>181297</player1><sortorder>0</sortorder><team>8315</team><id>2297352</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>67</elapsed><player1>182224</player1><sortorder>0</sortorder><team>8315</team><id>2297449</id><n>32</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>76</elapsed><player1>182224</player1><sortorder>0</sortorder><team>8315</team><id>2297502</id><n>31</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>80</elapsed><player1>282470</player1><sortorder>0</sortorder><team>8603</team><id>2297540</id><n>34</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>86</elapsed><player1>2983</player1><sortorder>0</sortorder><team>8603</team><id>2297574</id><n>35</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>62</elapsed><player1>38703</player1><sortorder>0</sortorder><team>8592</team><id>1780364</id><n>19</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>48</elapsed><player1>39638</player1><sortorder>0</sortorder><team>9880</team><id>1508839</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>16</elapsed><player1>39295</player1><sortorder>1</sortorder><team>9882</team><id>3211967</id><n>29</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>47</elapsed><player1>39295</player1><sortorder>0</sortorder><team>9882</team><id>3211975</id><n>34</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>87</elapsed><player1>24793</player1><sortorder>2</sortorder><team>9882</team><id>3211987</id><n>41</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>74</elapsed><player1>34633</player1><sortorder>0</sortorder><team>8529</team><id>2403720</id><n>20</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>9</elapsed><player1>36011</player1><sortorder>0</sortorder><team>8226</team><id>2934617</id><n>24</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>13</elapsed><player1>303913</player1><sortorder>0</sortorder><team>8358</team><id>2934619</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>25</elapsed><player1>212893</player1><sortorder>0</sortorder><team>8226</team><id>2934629</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>29</elapsed><player1>33065</player1><sortorder>0</sortorder><team>8358</team><id>2934630</id><n>33</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>66</elapsed><player1>37389</player1><sortorder>0</sortorder><team>8358</team><id>2935194</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>77</elapsed><player1>303914</player1><sortorder>0</sortorder><team>8226</team><id>2935233</id><n>35</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>61</value></coordinates><elapsed>47</elapsed><player2>450976</player2><subtype>shot</subtype><player1>196366</player1><sortorder>1</sortorder><team>8722</team><id>4007665</id><n>123</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>67</elapsed><player1>36086</player1><sortorder>2</sortorder><team>8722</team><id>4008097</id><n>196</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>26</value><value>6</value></coordinates><elapsed>85</elapsed><player2>72813</player2><subtype>header</subtype><player1>530859</player1><sortorder>1</sortorder><team>10189</team><id>4008487</id><n>243</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>46</elapsed><player1>37506</player1><sortorder>0</sortorder><team>8305</team><id>684396</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>85</elapsed><player1>37446</player1><sortorder>0</sortorder><team>9783</team><id>684583</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player2>39990</player2><player1>161420</player1><sortorder>0</sortorder><team>9829</team><id>3384796</id><n>13</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>33</elapsed><player2>33781</player2><subtype>shot</subtype><player1>33632</player1><sortorder>3</sortorder><team>8650</team><id>1782701</id><n>246</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><elapsed>55</elapsed><player2>30679</player2><subtype>tap_in</subtype><player1>51553</player1><sortorder>2</sortorder><team>8455</team><id>1783033</id><n>288</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>87</elapsed><player2>39109</player2><subtype>shot</subtype><player1>34036</player1><sortorder>3</sortorder><team>8650</team><id>1783403</id><n>304</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>42</elapsed><player2>33635</player2><player1>33871</player1><sortorder>0</sortorder><team>9906</team><id>3427600</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>38</elapsed><player2>25759</player2><subtype>header</subtype><player1>30655</player1><sortorder>1</sortorder><team>8633</team><id>472041</id><n>239</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><elapsed>64</elapsed><subtype>shot</subtype><player1>37259</player1><sortorder>1</sortorder><team>8633</team><id>472144</id><n>110</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>81</elapsed><player2>45605</player2><subtype>shot</subtype><player1>46384</player1><sortorder>4</sortorder><team>9865</team><id>472225</id><n>286</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>9</value></coordinates><elapsed>19</elapsed><player2>161660</player2><subtype>shot</subtype><player1>362113</player1><sortorder>1</sortorder><team>9804</team><id>5264118</id><n>116</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>26</value><value>61</value></coordinates><elapsed>34</elapsed><player1>267911</player1><sortorder>1</sortorder><team>9804</team><id>5264411</id><n>222</n><type>goal</type><goal_type>o</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>72</elapsed><player1>36121</player1><sortorder>0</sortorder><team>8533</team><id>5265600</id><n>546</n><type>goal</type><goal_type>p</goal_type></value><value><comment>rp</comment><event_incident_typefk>485</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>71</elapsed><player1>36121</player1><sortorder>0</sortorder><team>8533</team><id>5265623</id><n>552</n><type>goal</type><goal_type>rp</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>52</elapsed><player1>39447</player1><sortorder>1</sortorder><team>8686</team><id>1261821</id><n>286</n><type>goal</type><goal_type>p</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>87</elapsed><player1>38717</player1><sortorder>1</sortorder><team>8686</team><id>1262381</id><n>324</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>43</elapsed><player1>102612</player1><sortorder>0</sortorder><team>9864</team><id>1068499</id><n>29</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player1>41622</player1><sortorder>0</sortorder><team>9864</team><id>1068905</id><n>32</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>395</event_incident_typefk><coordinates><value>28</value><value>4</value></coordinates><elapsed>49</elapsed><player2>110148</player2><player1>33881</player1><sortorder>3</sortorder><team>10194</team><id>5177849</id><n>296</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>19</value><value>57</value></coordinates><elapsed>55</elapsed><player2>38366</player2><subtype>distance</subtype><player1>46354</player1><sortorder>3</sortorder><team>9850</team><id>5177918</id><n>320</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>27</value><value>12</value></coordinates><elapsed>67</elapsed><player2>26434</player2><subtype>distance</subtype><player1>172321</player1><sortorder>2</sortorder><team>10194</team><id>5178097</id><n>355</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>30</value><value>7</value></coordinates><elapsed>78</elapsed><player1>72417</player1><sortorder>6</sortorder><team>9850</team><id>5178303</id><n>419</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>19</value><value>63</value></coordinates><elapsed>16</elapsed><player2>482331</player2><subtype>volley</subtype><player1>427893</player1><sortorder>0</sortorder><team>8370</team><id>5186864</id><n>92</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>23</value><value>27</value></coordinates><elapsed>56</elapsed><subtype>distance</subtype><player1>75310</player1><sortorder>0</sortorder><team>10267</team><id>5187128</id><n>266</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>21</value><value>63</value></coordinates><elapsed>69</elapsed><player2>427893</player2><subtype>volley</subtype><player1>420568</player1><sortorder>4</sortorder><team>8370</team><id>5187195</id><n>333</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><coordinates><value>31</value><value>8</value></coordinates><elapsed>86</elapsed><subtype>shot</subtype><player1>241825</player1><sortorder>1</sortorder><team>10267</team><id>5187260</id><n>419</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>5</value></coordinates><elapsed>89</elapsed><player2>432463</player2><subtype>shot</subtype><player1>241825</player1><sortorder>0</sortorder><team>10267</team><id>5187276</id><n>431</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>15</elapsed><player1>148832</player1><sortorder>0</sortorder><team>4087</team><id>1744127</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>42</elapsed><player1>148832</player1><sortorder>0</sortorder><team>4087</team><id>1744446</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>69</elapsed><player1>41194</player1><sortorder>0</sortorder><team>4087</team><id>1744786</id><n>32</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>71</elapsed><player1>30977</player1><sortorder>0</sortorder><team>8583</team><id>1744787</id><n>25</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>32</value><value>65</value></coordinates><elapsed>53</elapsed><player2>279879</player2><subtype>shot</subtype><player1>164519</player1><sortorder>6</sortorder><team>9941</team><id>5105680</id><n>343</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>23</value><value>4</value></coordinates><elapsed>86</elapsed><player2>37756</player2><subtype>header</subtype><player1>279172</player1><sortorder>4</sortorder><team>9830</team><id>5106305</id><n>573</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>80</elapsed><player2>40015</player2><subtype>shot</subtype><player1>71550</player1><sortorder>4</sortorder><team>8528</team><id>1145151</id><n>377</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>10</elapsed><player2>172899</player2><player1>27696</player1><sortorder>0</sortorder><team>9882</team><id>3479262</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>27</elapsed><player1>27734</player1><sortorder>0</sortorder><team>8600</team><id>3479311</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>32</elapsed><player2>210278</player2><player1>27734</player1><sortorder>0</sortorder><team>8600</team><id>3479333</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>53</elapsed><player2>27696</player2><player1>39295</player1><sortorder>0</sortorder><team>9882</team><id>3479497</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player2>27696</player2><player1>181995</player1><sortorder>0</sortorder><team>9882</team><id>3479501</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>88</elapsed><player1>27734</player1><sortorder>0</sortorder><team>8600</team><id>3479670</id><n>33</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>34</elapsed><player2>41411</player2><subtype>shot</subtype><player1>39232</player1><sortorder>6</sortorder><team>9885</team><id>1795746</id><n>330</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>37</elapsed><player1>37441</player1><sortorder>0</sortorder><team>8558</team><id>2714587</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>73</elapsed><player1>58294</player1><sortorder>0</sortorder><team>8558</team><id>2714818</id><n>36</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>63</elapsed><subtype>shot</subtype><player1>27695</player1><sortorder>1</sortorder><team>8686</team><id>586634</id><n>217</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>34</elapsed><subtype>shot</subtype><player1>34305</player1><sortorder>1</sortorder><team>8636</team><id>535083</id><n>248</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>44</elapsed><player2>39229</player2><subtype>header</subtype><player1>39393</player1><sortorder>2</sortorder><team>8551</team><id>535130</id><n>246</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>83</elapsed><player2>34304</player2><subtype>shot</subtype><player1>34305</player1><sortorder>1</sortorder><team>8636</team><id>535318</id><n>272</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>13</elapsed><player2>46509</player2><subtype>shot</subtype><player1>30911</player1><sortorder>2</sortorder><team>8633</team><id>1264580</id><n>252</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>19</elapsed><subtype>direct_freekick</subtype><player1>36378</player1><sortorder>0</sortorder><team>8633</team><id>1264611</id><n>259</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>10</elapsed><player1>27326</player1><sortorder>0</sortorder><team>9823</team><id>1279443</id><n>164</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>57</elapsed><player1>30894</player1><sortorder>0</sortorder><team>9823</team><id>1280040</id><n>208</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>75</elapsed><player1>27326</player1><sortorder>0</sortorder><team>9823</team><id>1280114</id><n>219</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>87</elapsed><player1>27326</player1><sortorder>0</sortorder><team>9823</team><id>1280210</id><n>159</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player1>107930</player1><sortorder>0</sortorder><team>8305</team><id>1191340</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>72</elapsed><player2>38843</player2><subtype>shot</subtype><player1>30496</player1><sortorder>2</sortorder><team>9790</team><id>775643</id><n>271</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>18</elapsed><player2>186837</player2><player1>278838</player1><sortorder>0</sortorder><team>6413</team><id>4025324</id><n>5</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player2>150248</player2><player1>304668</player1><sortorder>0</sortorder><team>7788</team><id>4025694</id><n>11</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><event_incident_typefk>71</event_incident_typefk><elapsed>65</elapsed><del>1</del><sortorder>0</sortorder><n>14</n><type>goal</type><id>4025788</id></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>89</elapsed><player1>99323</player1><sortorder>0</sortorder><team>7788</team><id>4026070</id><n>21</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>64</elapsed><player1>355358</player1><sortorder>0</sortorder><team>8358</team><id>3050071</id><n>23</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>86</elapsed><player1>212865</player1><sortorder>0</sortorder><team>8358</team><id>3050185</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>3</value></coordinates><elapsed>13</elapsed><player2>33871</player2><subtype>shot</subtype><player1>179772</player1><sortorder>2</sortorder><team>8315</team><id>5351130</id><n>131</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>6</value></coordinates><elapsed>36</elapsed><player2>96619</player2><subtype>shot</subtype><player1>33028</player1><sortorder>2</sortorder><team>8315</team><id>5351683</id><n>322</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>65</value></coordinates><elapsed>51</elapsed><player2>194660</player2><subtype>shot</subtype><player1>37653</player1><sortorder>2</sortorder><team>9783</team><id>5352269</id><n>482</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>22</value><value>4</value></coordinates><elapsed>53</elapsed><player2>96619</player2><subtype>header</subtype><player1>33028</player1><sortorder>1</sortorder><team>8315</team><id>5352336</id><n>496</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><coordinates><value>26</value><value>6</value></coordinates><elapsed>61</elapsed><subtype>volley</subtype><player1>33028</player1><sortorder>2</sortorder><team>8315</team><id>5352673</id><n>629</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>5</value></coordinates><elapsed>28</elapsed><player2>237542</player2><subtype>shot</subtype><player1>95082</player1><sortorder>1</sortorder><team>10189</team><id>5116231</id><n>191</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><elapsed>18</elapsed><subtype>volley</subtype><player1>39455</player1><sortorder>1</sortorder><team>8697</team><id>1824385</id><n>320</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>45</elapsed><player2>167094</player2><subtype>shot</subtype><player1>25366</player1><sortorder>1</sortorder><team>8697</team><id>1824808</id><n>358</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player1>30827</player1><sortorder>3</sortorder><team>8697</team><id>1825418</id><n>379</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>71</elapsed><player2>25366</player2><subtype>shot</subtype><player1>110148</player1><sortorder>1</sortorder><team>8697</team><id>1825617</id><n>400</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>86</elapsed><subtype>distance</subtype><player1>37317</player1><sortorder>2</sortorder><team>8721</team><id>1825896</id><n>421</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>68</elapsed><player1>41240</player1><sortorder>0</sortorder><team>9873</team><id>1510327</id><n>14</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>5</elapsed><player2>33028</player2><player1>179772</player1><sortorder>0</sortorder><team>8315</team><id>3352557</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>22</elapsed><player2>184533</player2><player1>19243</player1><sortorder>0</sortorder><team>9906</team><id>3352636</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player1>184533</player1><sortorder>0</sortorder><team>9906</team><id>3352826</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>13428</player2><subtype>shot</subtype><player1>38848</player1><sortorder>2</sortorder><team>8722</team><id>1485944</id><n>316</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>12</value></coordinates><elapsed>54</elapsed><player2>352887</player2><subtype>shot</subtype><player1>231199</player1><sortorder>1</sortorder><team>9851</team><id>3812129</id><n>317</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>16</value><value>6</value></coordinates><elapsed>84</elapsed><player2>352887</player2><subtype>shot</subtype><player1>231199</player1><sortorder>1</sortorder><team>9851</team><id>3812601</id><n>341</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>6</value></coordinates><elapsed>45</elapsed><player2>26221</player2><subtype>shot</subtype><player1>473855</player1><sortorder>2</sortorder><team>9830</team><id>4260098</id><n>223</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>7</value></coordinates><elapsed>47</elapsed><player2>79264</player2><subtype>shot</subtype><player1>26221</player1><sortorder>2</sortorder><team>9830</team><id>4260233</id><n>265</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>29</value><value>62</value></coordinates><elapsed>76</elapsed><subtype>shot</subtype><player1>400962</player1><sortorder>2</sortorder><team>4087</team><id>4260687</id><n>402</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>288</event_incident_typefk><coordinates><value>13</value><value>60</value></coordinates><elapsed>11</elapsed><subtype>deflected</subtype><player1>298823</player1><sortorder>2</sortorder><team>8177</team><id>4946524</id><n>126</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>33</value><value>64</value></coordinates><elapsed>12</elapsed><subtype>shot</subtype><player1>30843</player1><sortorder>2</sortorder><team>10260</team><id>4000700</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><coordinates><value>20</value><value>6</value></coordinates><elapsed>31</elapsed><subtype>loose_ball</subtype><player1>41280</player1><sortorder>2</sortorder><team>8466</team><id>4000777</id><n>234</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>16</value><value>67</value></coordinates><elapsed>71</elapsed><player2>30829</player2><subtype>volley</subtype><player1>30843</player1><sortorder>1</sortorder><team>10260</team><id>4000948</id><n>204</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>26394</player1><sortorder>0</sortorder><team>9831</team><id>1454912</id><n>14</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>4</elapsed><player1>23853</player1><sortorder>0</sortorder><team>8371</team><id>803700</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>27</elapsed><player1>23853</player1><sortorder>0</sortorder><team>8371</team><id>803753</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>31</elapsed><player1>38136</player1><sortorder>0</sortorder><team>8371</team><id>803763</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>9</elapsed><player1>40197</player1><sortorder>0</sortorder><team>9853</team><id>2397799</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>19</elapsed><player1>179845</player1><sortorder>0</sortorder><team>9853</team><id>2397805</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>21</elapsed><player1>40197</player1><sortorder>0</sortorder><team>9853</team><id>2397806</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>25</elapsed><player1>150565</player1><sortorder>0</sortorder><team>9853</team><id>2397817</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>9</elapsed><player1>102879</player1><sortorder>0</sortorder><team>8603</team><id>2441071</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>17</value><value>6</value></coordinates><elapsed>54</elapsed><player2>49939</player2><subtype>volley</subtype><player1>93447</player1><sortorder>4</sortorder><team>9823</team><id>5500606</id><n>302</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>21</value><value>5</value></coordinates><elapsed>65</elapsed><player2>27303</player2><subtype>header</subtype><player1>93447</player1><sortorder>1</sortorder><team>9823</team><id>5500791</id><n>348</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>5</value></coordinates><elapsed>74</elapsed><player2>30924</player2><subtype>shot</subtype><player1>49939</player1><sortorder>0</sortorder><team>9823</team><id>5500953</id><n>409</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>649</event_incident_typefk><coordinates><value>20</value><value>6</value></coordinates><elapsed>3</elapsed><subtype>tap_in</subtype><player1>37412</player1><sortorder>2</sortorder><team>8456</team><id>4394248</id><n>15</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>16</value><value>18</value></coordinates><elapsed>66</elapsed><subtype>direct_freekick</subtype><player1>16351</player1><sortorder>0</sortorder><team>8456</team><id>4395268</id><n>280</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>25</value><value>53</value></coordinates><elapsed>68</elapsed><subtype>distance</subtype><player1>160713</player1><sortorder>3</sortorder><team>10252</team><id>4395300</id><n>294</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><coordinates><value>25</value><value>64</value></coordinates><elapsed>85</elapsed><subtype>volley</subtype><player1>56972</player1><sortorder>4</sortorder><team>10252</team><id>4395577</id><n>367</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>26</value><value>6</value></coordinates><elapsed>89</elapsed><player2>16351</player2><subtype>volley</subtype><player1>40196</player1><sortorder>1</sortorder><team>8456</team><id>4395642</id><n>388</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>26</value><value>4</value></coordinates><elapsed>51</elapsed><player2>128037</player2><subtype>header</subtype><player1>41658</player1><sortorder>2</sortorder><team>9875</team><id>4242150</id><n>428</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>20</value><value>14</value></coordinates><elapsed>63</elapsed><player2>41658</player2><subtype>distance</subtype><player1>25759</player1><sortorder>3</sortorder><team>9875</team><id>4242193</id><n>480</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>28</value><value>64</value></coordinates><elapsed>72</elapsed><player2>41199</player2><subtype>shot</subtype><player1>30991</player1><sortorder>2</sortorder><team>8636</team><id>4242238</id><n>538</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>87</elapsed><player1>282770</player1><sortorder>0</sortorder><team>8636</team><id>4242339</id><n>614</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>15</elapsed><player2>139671</player2><subtype>shot</subtype><player1>30892</player1><sortorder>4</sortorder><team>10252</team><id>1128105</id><n>269</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>40</elapsed><player2>23354</player2><subtype>header</subtype><player1>38609</player1><sortorder>2</sortorder><team>10252</team><id>1128502</id><n>301</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>66</elapsed><player2>139671</player2><subtype>shot</subtype><player1>38807</player1><sortorder>2</sortorder><team>10252</team><id>1128969</id><n>336</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>74</elapsed><player2>46469</player2><subtype>shot</subtype><player1>38521</player1><sortorder>2</sortorder><team>9825</team><id>2652172</id><n>243</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>75489</player2><subtype>shot</subtype><player1>37950</player1><sortorder>1</sortorder><team>9825</team><id>2652333</id><n>224</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>13</value><value>55</value></coordinates><elapsed>8</elapsed><subtype>distance</subtype><player1>169217</player1><sortorder>0</sortorder><team>9830</team><id>3989730</id><n>322</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>5</value></coordinates><elapsed>34</elapsed><player2>215299</player2><subtype>shot</subtype><player1>35724</player1><sortorder>1</sortorder><team>9847</team><id>3990379</id><n>114</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>31</value><value>13</value></coordinates><elapsed>48</elapsed><subtype>direct_freekick</subtype><player1>35724</player1><sortorder>0</sortorder><team>9847</team><id>3990796</id><n>167</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>15</elapsed><player1>27642</player1><sortorder>0</sortorder><team>10269</team><id>679783</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>39</elapsed><player1>25773</player1><sortorder>0</sortorder><team>10189</team><id>679895</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>57</elapsed><player1>40203</player1><sortorder>0</sortorder><team>10269</team><id>680066</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>42</elapsed><player2>75001</player2><subtype>header</subtype><player1>19243</player1><sortorder>2</sortorder><team>10281</team><id>1042513</id><n>320</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>54</elapsed><player2>19243</player2><subtype>shot</subtype><player1>111975</player1><sortorder>1</sortorder><team>10281</team><id>1042639</id><n>340</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>83</elapsed><subtype>distance</subtype><player1>112205</player1><sortorder>4</sortorder><team>8302</team><id>1042859</id><n>374</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>dg</comment><event_incident_typefk>299</event_incident_typefk><coordinates><value>21</value><value>64</value></coordinates><elapsed>34</elapsed><subtype>header</subtype><player1>185000</player1><sortorder>1</sortorder><team>4087</team><id>3679922</id><n>69</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>16</value><value>14</value></coordinates><elapsed>78</elapsed><subtype>direct_freekick</subtype><player1>188413</player1><sortorder>0</sortorder><team>9941</team><id>3680689</id><n>256</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>22</value><value>4</value></coordinates><elapsed>71</elapsed><player2>139806</player2><subtype>header</subtype><player1>30881</player1><sortorder>4</sortorder><team>8540</team><id>5013914</id><n>705</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>9</value></coordinates><elapsed>8</elapsed><player2>116772</player2><subtype>shot</subtype><player1>177714</player1><sortorder>4</sortorder><team>9823</team><id>3764419</id><n>202</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>35</value><value>9</value></coordinates><elapsed>14</elapsed><player2>30894</player2><subtype>shot</subtype><player1>93447</player1><sortorder>3</sortorder><team>9823</team><id>3764514</id><n>209</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><coordinates><value>27</value><value>3</value></coordinates><elapsed>78</elapsed><subtype>loose_ball</subtype><player1>177714</player1><sortorder>2</sortorder><team>9823</team><id>3765707</id><n>269</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>19</value><value>2</value></coordinates><elapsed>85</elapsed><player2>30834</player2><subtype>tap_in</subtype><player1>116772</player1><sortorder>4</sortorder><team>9823</team><id>3765796</id><n>273</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>1</elapsed><player1>2983</player1><sortorder>0</sortorder><team>8603</team><id>2619399</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>28</elapsed><player1>37427</player1><sortorder>0</sortorder><team>8603</team><id>2619412</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>158263</player1><sortorder>0</sortorder><team>8603</team><id>2619422</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>4</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>30839</player2><subtype>shot</subtype><player1>10491</player1><sortorder>1</sortorder><team>8668</team><id>1083239</id><n>183</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>npm</comment><event_incident_typefk>159</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>7</elapsed><subtype>saved</subtype><player1>195199</player1><sortorder>0</sortorder><team>7943</team><id>4767291</id><n>49</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>390</event_incident_typefk><coordinates><value>21</value><value>62</value></coordinates><elapsed>13</elapsed><player2>45220</player2><subtype>bicycle_kick</subtype><player1>35575</player1><sortorder>3</sortorder><team>8524</team><id>4767409</id><n>301</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>299</event_incident_typefk><coordinates><value>20</value><value>6</value></coordinates><elapsed>16</elapsed><subtype>header</subtype><player1>41542</player1><sortorder>2</sortorder><team>7943</team><id>4767502</id><n>105</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>17</value><value>18</value></coordinates><elapsed>22</elapsed><player2>41542</player2><subtype>distance</subtype><player1>74034</player1><sortorder>3</sortorder><team>7943</team><id>4767597</id><n>159</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>20</value><value>61</value></coordinates><elapsed>33</elapsed><subtype>shot</subtype><player1>35575</player1><sortorder>1</sortorder><team>8524</team><id>4767733</id><n>231</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>14</value></coordinates><elapsed>41</elapsed><player2>317156</player2><subtype>shot</subtype><player1>41542</player1><sortorder>2</sortorder><team>7943</team><id>4767878</id><n>423</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>159</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>86</elapsed><subtype>saved</subtype><player1>29587</player1><sortorder>0</sortorder><team>8524</team><id>4769019</id><n>520</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>61</value></coordinates><elapsed>44</elapsed><player2>69541</player2><subtype>shot</subtype><player1>643229</player1><sortorder>1</sortorder><team>9851</team><id>5065290</id><n>258</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>9</value></coordinates><elapsed>59</elapsed><player2>89476</player2><subtype>shot</subtype><player1>210683</player1><sortorder>2</sortorder><team>9837</team><id>5065711</id><n>353</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>10</value><value>9</value></coordinates><elapsed>67</elapsed><player2>94321</player2><subtype>shot</subtype><player1>181197</player1><sortorder>0</sortorder><team>9837</team><id>5065886</id><n>409</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>62</value></coordinates><elapsed>82</elapsed><player2>692984</player2><subtype>shot</subtype><player1>69541</player1><sortorder>1</sortorder><team>9851</team><id>5066127</id><n>492</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player1>184138</player1><sortorder>0</sortorder><team>8560</team><id>3102464</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>53</elapsed><player1>184138</player1><sortorder>0</sortorder><team>8560</team><id>3102659</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>76</elapsed><player1>40523</player1><sortorder>0</sortorder><team>10281</team><id>3102764</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player1>46808</player1><sortorder>0</sortorder><team>10281</team><id>3102777</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>21</elapsed><player2>33988</player2><subtype>volley</subtype><player1>39854</player1><sortorder>0</sortorder><team>8634</team><id>923055</id><n>255</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>22</elapsed><subtype>distance</subtype><player1>33988</player1><sortorder>0</sortorder><team>8634</team><id>923057</id><n>256</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>56</elapsed><player2>35724</player2><subtype>shot</subtype><player1>30981</player1><sortorder>4</sortorder><team>8634</team><id>923197</id><n>291</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>43</elapsed><player1>23933</player1><sortorder>0</sortorder><team>10261</team><id>1191655</id><n>313</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>68</elapsed><player2>38899</player2><subtype>header</subtype><player1>30988</player1><sortorder>1</sortorder><team>10194</team><id>1191868</id><n>374</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>85</elapsed><player1>23579</player1><sortorder>1</sortorder><team>10261</team><id>1192010</id><n>362</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>63</value></coordinates><elapsed>1</elapsed><player2>512747</player2><subtype>shot</subtype><player1>157101</player1><sortorder>2</sortorder><team>10229</team><id>5231303</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>61</value></coordinates><elapsed>15</elapsed><player2>157101</player2><subtype>shot</subtype><player1>466890</player1><sortorder>1</sortorder><team>10229</team><id>5231515</id><n>91</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>24</value><value>67</value></coordinates><elapsed>72</elapsed><player2>414232</player2><subtype>tap_in</subtype><player1>717557</player1><sortorder>1</sortorder><team>10229</team><id>5232949</id><n>406</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>54</elapsed><player2>30627</player2><subtype>shot</subtype><player1>79574</player1><sortorder>22</sortorder><team>8455</team><id>1858514</id><n>249</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>84</elapsed><player2>32627</player2><subtype>shot</subtype><player1>33138</player1><sortorder>55</sortorder><team>8602</team><id>1858786</id><n>270</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><elapsed>89</elapsed><player2>38834</player2><subtype>tap_in</subtype><player1>30631</player1><sortorder>33</sortorder><team>8455</team><id>1858833</id><n>276</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>35</elapsed><player1>35411</player1><sortorder>0</sortorder><team>8226</team><id>972472</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>36084</player1><sortorder>0</sortorder><team>8226</team><id>972958</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>27</value><value>5</value></coordinates><elapsed>11</elapsed><player2>184533</player2><subtype>header</subtype><player1>19327</player1><sortorder>4</sortorder><team>9906</team><id>3680329</id><n>247</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>28</value><value>6</value></coordinates><elapsed>25</elapsed><player2>33635</player2><subtype>header</subtype><player1>75447</player1><sortorder>1</sortorder><team>9906</team><id>3680554</id><n>258</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>58</value></coordinates><elapsed>33</elapsed><player2>75616</player2><subtype>shot</subtype><player1>213695</player1><sortorder>6</sortorder><team>8372</team><id>3680683</id><n>267</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>67</elapsed><player1>33635</player1><sortorder>0</sortorder><team>8394</team><id>1317032</id><n>18</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>77</elapsed><player1>46384</player1><sortorder>0</sortorder><team>9865</team><id>1317181</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>40</elapsed><player2>35997</player2><subtype>shot</subtype><player1>30702</player1><sortorder>1</sortorder><team>10189</team><id>530443</id><n>244</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>72</elapsed><subtype>direct_freekick</subtype><player1>29622</player1><sortorder>1</sortorder><team>8226</team><id>530665</id><n>279</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>28</value><value>5</value></coordinates><elapsed>21</elapsed><player2>164676</player2><subtype>header</subtype><player1>39618</player1><sortorder>1</sortorder><team>10260</team><id>3982577</id><n>44</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>26</value><value>56</value></coordinates><elapsed>39</elapsed><subtype>distance</subtype><player1>109621</player1><sortorder>1</sortorder><team>10194</team><id>3982872</id><n>75</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>42</value><value>13</value></coordinates><elapsed>59</elapsed><subtype>direct_freekick</subtype><player1>41468</player1><sortorder>1</sortorder><team>10260</team><id>3983200</id><n>141</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>7</elapsed><player1>22337</player1><sortorder>0</sortorder><team>8686</team><id>2514674</id><n>34</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>14</elapsed><player1>113318</player1><sortorder>0</sortorder><team>8535</team><id>2514682</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>19</elapsed><player1>30714</player1><sortorder>0</sortorder><team>8686</team><id>2514684</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>30714</player1><sortorder>0</sortorder><team>8686</team><id>2514721</id><n>32</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>46</elapsed><player1>35497</player1><sortorder>0</sortorder><team>8535</team><id>2514757</id><n>31</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player1>40165</player1><sortorder>0</sortorder><team>8686</team><id>2514769</id><n>33</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>66</value></coordinates><elapsed>3</elapsed><player2>34304</player2><subtype>shot</subtype><player1>35724</player1><sortorder>0</sortorder><team>9847</team><id>5268241</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>26</value><value>14</value></coordinates><elapsed>26</elapsed><subtype>distance</subtype><player1>199834</player1><sortorder>1</sortorder><team>8592</team><id>5268395</id><n>401</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>61</value></coordinates><elapsed>71</elapsed><player2>35724</player2><subtype>shot</subtype><player1>46509</player1><sortorder>3</sortorder><team>9847</team><id>5268762</id><n>289</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>23</elapsed><player1>364520</player1><sortorder>0</sortorder><team>7943</team><id>4308455</id><n>172</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>18</elapsed><player2>36412</player2><subtype>shot</subtype><player1>35454</player1><sortorder>7</sortorder><team>10261</team><id>1351627</id><n>274</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>39</elapsed><player2>36412</player2><subtype>shot</subtype><player1>35454</player1><sortorder>1</sortorder><team>10261</team><id>1351983</id><n>306</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>45</elapsed><subtype>shot</subtype><player1>23933</player1><sortorder>2</sortorder><team>10261</team><id>1352092</id><n>312</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>60</elapsed><player2>23933</player2><subtype>shot</subtype><player1>35454</player1><sortorder>1</sortorder><team>10261</team><id>1352444</id><n>328</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>64</elapsed><player2>24205</player2><subtype>shot</subtype><player1>36412</player1><sortorder>0</sortorder><team>10261</team><id>1352505</id><n>332</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>13</elapsed><player2>30834</player2><subtype>header</subtype><player1>33085</player1><sortorder>2</sortorder><team>9823</team><id>1613522</id><n>233</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>17</elapsed><player2>116772</player2><subtype>shot</subtype><player1>30924</player1><sortorder>3</sortorder><team>9823</team><id>1613529</id><n>242</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>34</elapsed><subtype>shot</subtype><player1>30834</player1><sortorder>4</sortorder><team>9823</team><id>1613611</id><n>260</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>57</elapsed><player2>116772</player2><subtype>shot</subtype><player1>27326</player1><sortorder>1</sortorder><team>9823</team><id>1613881</id><n>291</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>80</elapsed><player2>94886</player2><subtype>header</subtype><player1>30764</player1><sortorder>5</sortorder><team>9823</team><id>1614010</id><n>310</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>17</elapsed><player2>38817</player2><subtype>shot</subtype><player1>30960</player1><sortorder>2</sortorder><team>8456</team><id>731563</id><n>221</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><elapsed>68</elapsed><subtype>shot</subtype><player1>33974</player1><sortorder>1</sortorder><team>8456</team><id>732593</id><n>103</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>8</elapsed><player1>49939</player1><sortorder>0</sortorder><team>9885</team><id>2703075</id><n>18</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>28</elapsed><player1>49939</player1><sortorder>0</sortorder><team>9885</team><id>2703120</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>4</elapsed><player2>24159</player2><subtype>shot</subtype><player1>30960</player1><sortorder>0</sortorder><team>8456</team><id>1027825</id><n>220</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>5</elapsed><player2>38817</player2><subtype>shot</subtype><player1>33781</player1><sortorder>1</sortorder><team>8456</team><id>1027839</id><n>228</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>391</event_incident_typefk><elapsed>7</elapsed><player2>30960</player2><subtype>loose_ball</subtype><player1>38817</player1><sortorder>1</sortorder><team>8456</team><id>1027850</id><n>216</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>20</elapsed><player2>24159</player2><subtype>header</subtype><player1>34942</player1><sortorder>1</sortorder><team>8456</team><id>1027935</id><n>223</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>45</elapsed><player2>38817</player2><subtype>shot</subtype><player1>30960</player1><sortorder>8</sortorder><team>8456</team><id>1028107</id><n>257</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>58</elapsed><player2>24159</player2><subtype>header</subtype><player1>39027</player1><sortorder>1</sortorder><team>8456</team><id>1028382</id><n>272</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>71</elapsed><player2>46008</player2><subtype>shot</subtype><player1>32627</player1><sortorder>5</sortorder><team>8191</team><id>1028457</id><n>282</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>28</elapsed><player1>26535</player1><sortorder>0</sortorder><team>8696</team><id>1247926</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>35</elapsed><player1>30827</player1><sortorder>0</sortorder><team>8696</team><id>1247927</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>58</elapsed><player1>42369</player1><sortorder>0</sortorder><team>8371</team><id>1248195</id><n>31</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>30827</player1><sortorder>0</sortorder><team>8696</team><id>1248219</id><n>36</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>85</elapsed><player1>37879</player1><sortorder>0</sortorder><team>8696</team><id>1248437</id><n>37</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>26</value><value>10</value></coordinates><elapsed>7</elapsed><player2>147735</player2><subtype>volley</subtype><player1>26982</player1><sortorder>3</sortorder><team>8406</team><id>4365545</id><n>45</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>21</value><value>69</value></coordinates><elapsed>22</elapsed><player2>281012</player2><subtype>tap_in</subtype><player1>177720</player1><sortorder>2</sortorder><team>10269</team><id>4365765</id><n>111</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>2</value></coordinates><elapsed>74</elapsed><player2>26982</player2><subtype>shot</subtype><player1>66940</player1><sortorder>2</sortorder><team>8406</team><id>4366649</id><n>516</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>6</value></coordinates><elapsed>28</elapsed><player2>150297</player2><subtype>shot</subtype><player1>488139</player1><sortorder>2</sortorder><team>9829</team><id>5213856</id><n>154</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><coordinates><value>24</value><value>3</value></coordinates><elapsed>36</elapsed><subtype>header</subtype><player1>29590</player1><sortorder>4</sortorder><team>9829</team><id>5213920</id><n>571</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>159</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>40</elapsed><subtype>saved</subtype><player1>210184</player1><sortorder>0</sortorder><team>9941</team><id>5213944</id><n>229</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>4</value></coordinates><elapsed>70</elapsed><player2>488139</player2><subtype>shot</subtype><player1>267894</player1><sortorder>1</sortorder><team>9829</team><id>5214739</id><n>430</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>411</event_incident_typefk><coordinates><value>27</value><value>2</value></coordinates><elapsed>90</elapsed><player2>267894</player2><subtype>volley</subtype><player1>361790</player1><sortorder>12</sortorder><team>9829</team><id>5215330</id><n>586</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>66</elapsed><player2>184645</player2><subtype>header</subtype><player1>30702</player1><sortorder>2</sortorder><team>10189</team><id>784425</id><n>310</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>299</event_incident_typefk><elapsed>87</elapsed><subtype>header</subtype><player1>30702</player1><sortorder>2</sortorder><team>10189</team><id>784473</id><n>210</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>20</event_incident_typefk><elapsed>90</elapsed><player1>26437</player1><sortorder>3</sortorder><team>10189</team><id>784484</id><n>308</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>23</elapsed><player1>11685</player1><sortorder>2</sortorder><team>8543</team><id>4166629</id><n>119</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>43</elapsed><player2>24159</player2><subtype>header</subtype><player1>33086</player1><sortorder>3</sortorder><team>8456</team><id>1565214</id><n>311</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>62</elapsed><player2>23782</player2><subtype>shot</subtype><player1>15403</player1><sortorder>122</sortorder><team>8456</team><id>1565705</id><n>332</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>66</value></coordinates><elapsed>13</elapsed><player2>40958</player2><subtype>shot</subtype><player1>189178</player1><sortorder>3</sortorder><team>9783</team><id>3730117</id><n>220</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>45</elapsed><player1>23587</player1><sortorder>0</sortorder><team>8358</team><id>1808175</id><n>16</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>67</elapsed><player1>46700</player1><sortorder>0</sortorder><team>8358</team><id>1808805</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>4</elapsed><player2>36615</player2><subtype>shot</subtype><player1>38817</player1><sortorder>1</sortorder><team>8456</team><id>1311139</id><n>272</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>16</value><value>63</value></coordinates><elapsed>1</elapsed><player2>26307</player2><subtype>volley</subtype><player1>38098</player1><sortorder>2</sortorder><team>8592</team><id>3727078</id><n>183</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>25</value><value>62</value></coordinates><elapsed>44</elapsed><player1>192319</player1><sortorder>3</sortorder><team>4087</team><id>3727341</id><n>234</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>62</value></coordinates><elapsed>63</elapsed><player2>25496</player2><subtype>shot</subtype><player1>254308</player1><sortorder>2</sortorder><team>8592</team><id>3727542</id><n>245</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>406</event_incident_typefk><coordinates><value>17</value><value>6</value></coordinates><elapsed>90</elapsed><player2>179891</player2><subtype>header</subtype><player1>400962</player1><sortorder>6</sortorder><team>4087</team><id>3727699</id><n>268</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>9</elapsed><player1>49939</player1><sortorder>0</sortorder><team>9885</team><id>2475210</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>22</elapsed><player1>39540</player1><sortorder>0</sortorder><team>9885</team><id>2475228</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>25</elapsed><player1>42420</player1><sortorder>0</sortorder><team>9878</team><id>2475229</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>30</elapsed><player1>111862</player1><sortorder>0</sortorder><team>9885</team><id>2475234</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>38</elapsed><player1>96540</player1><sortorder>0</sortorder><team>9885</team><id>2475245</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>39540</player1><sortorder>0</sortorder><team>9885</team><id>2475265</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>53</elapsed><player1>39540</player1><sortorder>0</sortorder><team>9885</team><id>2475308</id><n>30</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>3</elapsed><player1>35561</player1><sortorder>0</sortorder><team>8636</team><id>676612</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>27</elapsed><player1>39286</player1><sortorder>0</sortorder><team>8533</team><id>676805</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>64</elapsed><player1>108808</player1><sortorder>0</sortorder><team>8636</team><id>677236</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>73</elapsed><player1>24436</player1><sortorder>0</sortorder><team>8533</team><id>677297</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>53</elapsed><player2>33863</player2><subtype>shot</subtype><player1>24159</player1><sortorder>3</sortorder><team>8472</team><id>2526034</id><n>264</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>3</elapsed><player2>27430</player2><subtype>shot</subtype><player1>38817</player1><sortorder>2</sortorder><team>10260</team><id>399353</id><n>239</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>27</elapsed><player1>30362</player1><sortorder>1</sortorder><team>10260</team><id>399404</id><n>261</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>77</elapsed><player2>37139</player2><subtype>shot</subtype><player1>30915</player1><sortorder>1</sortorder><team>8650</team><id>399546</id><n>314</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>76</elapsed><player1>31199</player1><sortorder>0</sortorder><team>8178</team><id>2096181</id><n>14</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>11</elapsed><player1>34633</player1><sortorder>0</sortorder><team>8529</team><id>1327350</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>27</elapsed><player1>34633</player1><sortorder>0</sortorder><team>8529</team><id>1327814</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>71</elapsed><player1>34633</player1><sortorder>0</sortorder><team>8529</team><id>1328394</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>79</elapsed><player2>34466</player2><subtype>shot</subtype><player1>23264</player1><sortorder>1</sortorder><team>10252</team><id>809423</id><n>302</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>83</elapsed><player1>34433</player1><sortorder>1</sortorder><team>8602</team><id>809441</id><n>305</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>9</value></coordinates><elapsed>76</elapsed><player2>41280</player2><subtype>shot</subtype><player1>23293</player1><sortorder>3</sortorder><team>8466</team><id>3924492</id><n>242</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>6</value></coordinates><elapsed>80</elapsed><player2>166676</player2><subtype>shot</subtype><player1>23293</player1><sortorder>1</sortorder><team>8466</team><id>3924575</id><n>253</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>28</elapsed><player1>147735</player1><sortorder>0</sortorder><team>8165</team><id>1943748</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>66</elapsed><player1>38848</player1><sortorder>0</sortorder><team>8722</team><id>1944051</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>85</elapsed><player1>150292</player1><sortorder>0</sortorder><team>8165</team><id>1944194</id><n>29</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>35</elapsed><player1>25815</player1><sortorder>0</sortorder><team>8540</team><id>2684426</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>43</elapsed><player1>39428</player1><sortorder>0</sortorder><team>9882</team><id>2684556</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>50</elapsed><player1>147951</player1><sortorder>0</sortorder><team>8540</team><id>2684711</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player1>196205</player1><sortorder>0</sortorder><team>8540</team><id>2684772</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>67</value></coordinates><elapsed>41</elapsed><player2>20645</player2><subtype>header</subtype><player1>279107</player1><sortorder>4</sortorder><team>10217</team><id>5234826</id><n>296</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>21</value><value>62</value></coordinates><elapsed>59</elapsed><subtype>shot</subtype><player1>31731</player1><sortorder>3</sortorder><team>10217</team><id>5235476</id><n>669</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>37</elapsed><player2>102619</player2><subtype>shot</subtype><player1>18784</player1><sortorder>1</sortorder><team>9868</team><id>1074206</id><n>275</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>130</event_incident_typefk><elapsed>45</elapsed><subtype>direct_freekick</subtype><player1>41468</player1><sortorder>0</sortorder><team>10267</team><id>1074235</id><n>286</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>58</elapsed><player2>37459</player2><subtype>shot</subtype><player1>41468</player1><sortorder>1</sortorder><team>10267</team><id>1074278</id><n>305</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>68</elapsed><player2>41468</player2><subtype>shot</subtype><player1>37459</player1><sortorder>1</sortorder><team>10267</team><id>1074297</id><n>311</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>13</value></coordinates><elapsed>21</elapsed><player2>602211</player2><subtype>shot</subtype><player1>131991</player1><sortorder>5</sortorder><team>7794</team><id>5121299</id><n>135</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>10</value></coordinates><elapsed>79</elapsed><player2>40197</player2><subtype>shot</subtype><player1>602555</player1><sortorder>3</sortorder><team>7794</team><id>5122458</id><n>491</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>22</elapsed><player1>196484</player1><sortorder>0</sortorder><team>9888</team><id>2038031</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>27665</player1><sortorder>0</sortorder><team>9888</team><id>2038182</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>49</elapsed><player1>196484</player1><sortorder>0</sortorder><team>9888</team><id>2038388</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>55</elapsed><player1>27665</player1><sortorder>0</sortorder><team>9888</team><id>2038507</id><n>30</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>88</elapsed><player1>96643</player1><sortorder>0</sortorder><team>8686</team><id>2039037</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player1>174850</player1><sortorder>0</sortorder><team>8686</team><id>2039038</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><elapsed>32</elapsed><subtype>header</subtype><player1>113836</player1><sortorder>4</sortorder><team>8472</team><id>1334521</id><n>387</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>65</value></coordinates><elapsed>60</elapsed><player2>362195</player2><subtype>shot</subtype><player1>25587</player1><sortorder>6</sortorder><team>9882</team><id>4271470</id><n>747</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>63</value></coordinates><elapsed>78</elapsed><player2>39295</player2><subtype>shot</subtype><player1>196484</player1><sortorder>7</sortorder><team>9882</team><id>4271620</id><n>748</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player1>282676</player1><sortorder>0</sortorder><team>8560</team><id>2353944</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>61</elapsed><player1>75342</player1><sortorder>0</sortorder><team>8560</team><id>2353962</id><n>23</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>29</elapsed><subtype>shot</subtype><player1>30955</player1><sortorder>2</sortorder><team>8634</team><id>1546125</id><n>322</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>48</elapsed><player2>39854</player2><subtype>header</subtype><player1>37482</player1><sortorder>0</sortorder><team>8634</team><id>1546363</id><n>358</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>21</elapsed><player1>26437</player1><sortorder>0</sortorder><team>10189</team><id>2376396</id><n>19</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>81</elapsed><player1>128827</player1><sortorder>0</sortorder><team>10189</team><id>2376451</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player1>66578</player1><sortorder>0</sortorder><team>10189</team><id>2376467</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>21</elapsed><player1>41707</player1><sortorder>0</sortorder><team>9864</team><id>2669290</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>31</elapsed><player1>43372</player1><sortorder>0</sortorder><team>8370</team><id>2669446</id><n>21</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player1>38822</player1><sortorder>0</sortorder><team>9864</team><id>2669923</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>86</elapsed><player1>50473</player1><sortorder>0</sortorder><team>9864</team><id>2670424</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>31</elapsed><player1>210119</player1><sortorder>0</sortorder><team>9748</team><id>3388772</id><n>15</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>31</elapsed><player1>35724</player1><sortorder>0</sortorder><team>8564</team><id>2038085</id><n>241</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>47</elapsed><player2>25587</player2><subtype>shot</subtype><player1>92666</player1><sortorder>4</sortorder><team>8535</team><id>2038370</id><n>234</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>89</elapsed><player2>92666</player2><subtype>shot</subtype><player1>38827</player1><sortorder>2</sortorder><team>8535</team><id>2039051</id><n>281</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>83</elapsed><player1>26255</player1><sortorder>0</sortorder><team>8302</team><id>2544027</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>28</elapsed><player1>32748</player1><sortorder>0</sortorder><team>8636</team><id>2427776</id><n>15</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>85</elapsed><player1>30991</player1><sortorder>0</sortorder><team>8636</team><id>2428262</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>72</elapsed><subtype>shot</subtype><player1>30905</player1><sortorder>8</sortorder><team>8636</team><id>498239</id><n>361</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>7</value></coordinates><elapsed>57</elapsed><player2>30284</player2><subtype>shot</subtype><player1>282723</player1><sortorder>4</sortorder><team>8534</team><id>4509472</id><n>271</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>58</value></coordinates><elapsed>90</elapsed><player2>196484</player2><subtype>shot</subtype><player1>33639</player1><sortorder>5</sortorder><team>9882</team><id>4509677</id><n>433</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>414</event_incident_typefk><elapsed>45</elapsed><player2>38817</player2><subtype>deflected</subtype><player1>30367</player1><sortorder>0</sortorder><team>8456</team><id>855014</id><n>300</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>82</elapsed><player1>24843</player1><sortorder>0</sortorder><team>8667</team><id>855703</id><n>331</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>12</elapsed><player1>42651</player1><sortorder>0</sortorder><team>8533</team><id>868403</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>66</elapsed><player1>42003</player1><sortorder>0</sortorder><team>8533</team><id>868899</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>1</value></coordinates><elapsed>2</elapsed><player2>210142</player2><subtype>shot</subtype><player1>355901</player1><sortorder>0</sortorder><team>10249</team><id>4010442</id><n>31</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>7</value></coordinates><elapsed>16</elapsed><player2>210142</player2><subtype>shot</subtype><player1>18576</player1><sortorder>1</sortorder><team>10249</team><id>4010662</id><n>61</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>29</value><value>57</value></coordinates><elapsed>18</elapsed><subtype>distance</subtype><player1>179893</player1><sortorder>2</sortorder><team>8588</team><id>4010695</id><n>397</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>28</value><value>64</value></coordinates><elapsed>34</elapsed><player2>40683</player2><subtype>header</subtype><player1>438167</player1><sortorder>1</sortorder><team>8588</team><id>4010904</id><n>141</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>14</value><value>2</value></coordinates><elapsed>63</elapsed><player2>41124</player2><subtype>shot</subtype><player1>40659</player1><sortorder>0</sortorder><team>10249</team><id>4011328</id><n>263</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><coordinates><value>15</value><value>64</value></coordinates><elapsed>80</elapsed><subtype>volley</subtype><player1>277341</player1><sortorder>2</sortorder><team>8588</team><id>4011553</id><n>335</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>46</elapsed><player2>40945</player2><subtype>shot</subtype><player1>30829</player1><sortorder>3</sortorder><team>10260</team><id>995162</id><n>331</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>84</elapsed><player2>27430</player2><subtype>shot</subtype><player1>30829</player1><sortorder>2</sortorder><team>10260</team><id>995591</id><n>347</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>89</elapsed><player2>30802</player2><subtype>header</subtype><player1>27430</player1><sortorder>1</sortorder><team>10260</team><id>995646</id><n>343</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>21</value><value>14</value></coordinates><elapsed>55</elapsed><subtype>distance</subtype><player1>231801</player1><sortorder>3</sortorder><team>9850</team><id>5282825</id><n>584</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>20</value><value>7</value></coordinates><elapsed>65</elapsed><subtype>shot</subtype><player1>35493</player1><sortorder>2</sortorder><team>9850</team><id>5283119</id><n>691</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>17</value><value>64</value></coordinates><elapsed>74</elapsed><subtype>shot</subtype><player1>25496</player1><sortorder>2</sortorder><team>8654</team><id>5283273</id><n>762</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>58</value></coordinates><elapsed>77</elapsed><player2>25496</player2><subtype>shot</subtype><player1>37169</player1><sortorder>2</sortorder><team>8654</team><id>5283319</id><n>797</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>34</elapsed><player2>23354</player2><subtype>shot</subtype><player1>26165</player1><sortorder>2</sortorder><team>10252</team><id>671366</id><n>300</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>24</elapsed><subtype>shot</subtype><player1>18823</player1><sortorder>2</sortorder><team>8530</team><id>1070134</id><n>258</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>52</elapsed><player2>32937</player2><subtype>shot</subtype><player1>41890</player1><sortorder>5</sortorder><team>9885</team><id>1070545</id><n>317</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>7</value></coordinates><elapsed>50</elapsed><player2>109121</player2><subtype>shot</subtype><player1>42437</player1><sortorder>1</sortorder><team>8533</team><id>3789308</id><n>285</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>67</value></coordinates><elapsed>59</elapsed><player2>30284</player2><subtype>shot</subtype><player1>282723</player1><sortorder>2</sortorder><team>8534</team><id>3789419</id><n>297</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>29</elapsed><player1>171698</player1><sortorder>0</sortorder><team>10189</team><id>2616573</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player1>27524</player1><sortorder>0</sortorder><team>8194</team><id>2616783</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>81</elapsed><player1>171698</player1><sortorder>0</sortorder><team>10189</team><id>2616857</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>28</value><value>65</value></coordinates><elapsed>5</elapsed><player2>95078</player2><subtype>header</subtype><player1>30962</player1><sortorder>3</sortorder><team>8633</team><id>3688674</id><n>243</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>60</value></coordinates><elapsed>11</elapsed><player2>31097</player2><subtype>shot</subtype><player1>31921</player1><sortorder>2</sortorder><team>8633</team><id>3688783</id><n>248</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>19</value><value>3</value></coordinates><elapsed>35</elapsed><player2>33973</player2><subtype>tap_in</subtype><player1>282676</player1><sortorder>5</sortorder><team>8560</team><id>3689285</id><n>287</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>7</value></coordinates><elapsed>41</elapsed><player2>47565</player2><subtype>header</subtype><player1>99047</player1><sortorder>1</sortorder><team>8560</team><id>3689342</id><n>292</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>4</value></coordinates><elapsed>65</elapsed><player2>33973</player2><subtype>shot</subtype><player1>99047</player1><sortorder>2</sortorder><team>8560</team><id>3689985</id><n>322</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>6</value></coordinates><elapsed>75</elapsed><player2>102622</player2><subtype>shot</subtype><player1>75342</player1><sortorder>4</sortorder><team>8560</team><id>3690185</id><n>332</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>21</value><value>64</value></coordinates><elapsed>36</elapsed><player2>191315</player2><subtype>header</subtype><player1>30893</player1><sortorder>1</sortorder><team>8633</team><id>4431293</id><n>207</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>24</value><value>66</value></coordinates><elapsed>37</elapsed><player2>70409</player2><subtype>tap_in</subtype><player1>30893</player1><sortorder>2</sortorder><team>8633</team><id>4431311</id><n>225</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>45</elapsed><player1>166648</player1><sortorder>5</sortorder><team>8302</team><id>4431430</id><n>267</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>31</value><value>66</value></coordinates><elapsed>68</elapsed><player2>31921</player2><subtype>header</subtype><player1>30893</player1><sortorder>4</sortorder><team>8633</team><id>4431962</id><n>457</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>6</value></coordinates><elapsed>79</elapsed><player2>189192</player2><subtype>shot</subtype><player1>111237</player1><sortorder>3</sortorder><team>8302</team><id>4432142</id><n>506</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>8</elapsed><player2>33988</player2><subtype>shot</subtype><player1>30955</player1><sortorder>1</sortorder><team>8634</team><id>1368323</id><n>201</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>18</elapsed><player2>30981</player2><subtype>shot</subtype><player1>30909</player1><sortorder>1</sortorder><team>8634</team><id>1368367</id><n>157</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>36</elapsed><subtype>shot</subtype><player1>150250</player1><sortorder>2</sortorder><team>8634</team><id>1368432</id><n>180</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>68</elapsed><subtype>direct_freekick</subtype><player1>37450</player1><sortorder>0</sortorder><team>9864</team><id>1368581</id><n>214</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>74</elapsed><player2>39854</player2><subtype>shot</subtype><player1>30909</player1><sortorder>1</sortorder><team>8634</team><id>1368603</id><n>196</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>8</value></coordinates><elapsed>37</elapsed><player2>30920</player2><subtype>shot</subtype><player1>325916</player1><sortorder>2</sortorder><team>8540</team><id>3976195</id><n>145</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>882</event_incident_typefk><coordinates><value>17</value><value>61</value></coordinates><elapsed>41</elapsed><player2>32748</player2><subtype>lob</subtype><player1>41413</player1><sortorder>1</sortorder><team>10167</team><id>3976263</id><n>174</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>7</value><value>12</value></coordinates><elapsed>73</elapsed><subtype>direct_freekick</subtype><player1>30920</player1><sortorder>2</sortorder><team>8540</team><id>3976941</id><n>298</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player1>30474</player1><sortorder>0</sortorder><team>8543</team><id>1009868</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>72</elapsed><player1>30733</player1><sortorder>0</sortorder><team>8543</team><id>1011555</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><elapsed>5</elapsed><subtype>saved_back_into_play</subtype><player1>38460</player1><sortorder>2</sortorder><team>9906</team><id>1326664</id><n>13</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>8</elapsed><subtype>shot</subtype><player1>37412</player1><sortorder>2</sortorder><team>9906</team><id>1326671</id><n>89</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>35</elapsed><subtype>shot</subtype><player1>37412</player1><sortorder>1</sortorder><team>9906</team><id>1326726</id><n>103</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>8</elapsed><player1>41411</player1><sortorder>0</sortorder><team>8529</team><id>1387676</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>12</elapsed><player1>41411</player1><sortorder>0</sortorder><team>8529</team><id>1387730</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>14</elapsed><player1>27696</player1><sortorder>0</sortorder><team>9976</team><id>1387778</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>42</elapsed><player1>26234</player1><sortorder>0</sortorder><team>9976</team><id>1388216</id><n>6</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>89</elapsed><player1>39474</player1><sortorder>0</sortorder><team>8529</team><id>1388858</id><n>15</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>2</elapsed><player1>37506</player1><sortorder>0</sortorder><team>10267</team><id>2505494</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>47565</player1><sortorder>0</sortorder><team>8560</team><id>2505686</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>57</elapsed><player1>33960</player1><sortorder>0</sortorder><team>8560</team><id>2505805</id><n>31</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>64</elapsed><player1>99054</player1><sortorder>0</sortorder><team>8560</team><id>2505815</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>73</elapsed><player1>37506</player1><sortorder>0</sortorder><team>10267</team><id>2505837</id><n>33</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>83</elapsed><player1>46289</player1><sortorder>0</sortorder><team>8560</team><id>2505895</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>90</elapsed><player1>75342</player1><sortorder>0</sortorder><team>8560</team><id>2505930</id><n>26</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>33</elapsed><player1>27316</player1><sortorder>0</sortorder><team>8697</team><id>1213872</id><n>14</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>36771</player1><sortorder>0</sortorder><team>8358</team><id>1214534</id><n>15</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>73</elapsed><player1>37550</player1><sortorder>0</sortorder><team>8697</team><id>1214591</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>15</elapsed><player2>102620</player2><subtype>shot</subtype><player1>46289</player1><sortorder>1</sortorder><team>8560</team><id>1674801</id><n>209</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>20</elapsed><player2>103904</player2><subtype>shot</subtype><player1>25462</player1><sortorder>1</sortorder><team>8661</team><id>1674814</id><n>216</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>50</elapsed><player2>74663</player2><subtype>volley</subtype><player1>56686</player1><sortorder>2</sortorder><team>8661</team><id>1674963</id><n>245</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>15</elapsed><player1>93447</player1><sortorder>0</sortorder><team>9823</team><id>5577344</id><n>101</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>15</value><value>64</value></coordinates><elapsed>32</elapsed><player2>30889</player2><subtype>shot</subtype><player1>93447</player1><sortorder>2</sortorder><team>9823</team><id>5577747</id><n>229</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>42</elapsed><player1>171091</player1><sortorder>0</sortorder><team>8234</team><id>5578103</id><n>299</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>67</value></coordinates><elapsed>69</elapsed><player2>41238</player2><subtype>shot</subtype><player1>297579</player1><sortorder>1</sortorder><team>9827</team><id>4235307</id><n>376</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>21</value><value>6</value></coordinates><elapsed>72</elapsed><player2>468931</player2><subtype>header</subtype><player1>109280</player1><sortorder>5</sortorder><team>7819</team><id>4235351</id><n>399</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><elapsed_plus>5</elapsed_plus><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>90</elapsed><player1>297579</player1><sortorder>7</sortorder><team>9827</team><id>4235652</id><n>490</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>8</elapsed><player1>27425</player1><sortorder>0</sortorder><team>8406</team><id>2651396</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>3</value></coordinates><elapsed>2</elapsed><player2>512747</player2><subtype>shot</subtype><player1>467022</player1><sortorder>4</sortorder><team>10229</team><id>5221711</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>882</event_incident_typefk><coordinates><value>19</value><value>8</value></coordinates><elapsed>13</elapsed><player2>466890</player2><subtype>lob</subtype><player1>422121</player1><sortorder>6</sortorder><team>10229</team><id>5221786</id><n>101</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>25</value><value>3</value></coordinates><elapsed>20</elapsed><player2>512747</player2><subtype>tap_in</subtype><player1>467022</player1><sortorder>4</sortorder><team>10229</team><id>5221830</id><n>293</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>35</value><value>58</value></coordinates><elapsed>72</elapsed><subtype>distance</subtype><player1>46203</player1><sortorder>4</sortorder><team>7788</team><id>5222291</id><n>439</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>40</elapsed><player2>39106</player2><subtype>shot</subtype><player1>34602</player1><sortorder>4</sortorder><team>9790</team><id>1006466</id><n>217</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><elapsed>62</elapsed><subtype>header</subtype><player1>30249</player1><sortorder>3</sortorder><team>10189</team><id>1006867</id><n>250</n><type>goal</type><goal_type>n</goal_type></value><value><comment>rp</comment><event_incident_typefk>485</event_incident_typefk><elapsed>67</elapsed><player1>25773</player1><sortorder>1</sortorder><team>10189</team><id>1006896</id><n>142</n><type>goal</type><goal_type>rp</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>68</elapsed><player1>25773</player1><sortorder>0</sortorder><team>10189</team><id>1006897</id><n>255</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>77</elapsed><player2>39106</player2><subtype>shot</subtype><player1>38216</player1><sortorder>0</sortorder><team>9790</team><id>1006944</id><n>262</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>71</elapsed><player1>40165</player1><sortorder>0</sortorder><team>8686</team><id>2489196</id><n>24</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>86</elapsed><player1>96398</player1><sortorder>0</sortorder><team>8686</team><id>2489242</id><n>28</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>10</elapsed><player1>24001</player1><sortorder>5</sortorder><team>10194</team><id>691055</id><n>167</n><type>goal</type><goal_type>o</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>16</elapsed><player1>30843</player1><sortorder>0</sortorder><team>9825</team><id>691200</id><n>172</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>18</elapsed><player2>30843</player2><subtype>header</subtype><player1>27277</player1><sortorder>2</sortorder><team>9825</team><id>691253</id><n>175</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>31</elapsed><player1>38755</player1><sortorder>0</sortorder><team>10194</team><id>691611</id><n>185</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><elapsed>41</elapsed><subtype>volley</subtype><player1>30843</player1><sortorder>1</sortorder><team>9825</team><id>691930</id><n>195</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>13</elapsed><subtype>direct_freekick</subtype><player1>30843</player1><sortorder>0</sortorder><team>9825</team><id>1347839</id><n>169</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>58</elapsed><player2>30613</player2><subtype>shot</subtype><player1>26181</player1><sortorder>3</sortorder><team>9825</team><id>1347932</id><n>205</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>66</elapsed><player1>34193</player1><sortorder>5</sortorder><team>8658</team><id>1347943</id><n>208</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>9</elapsed><player1>38216</player1><sortorder>0</sortorder><team>9790</team><id>1066695</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>19</elapsed><player1>30496</player1><sortorder>0</sortorder><team>9790</team><id>1066736</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>25</elapsed><player1>30496</player1><sortorder>0</sortorder><team>9790</team><id>1066756</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>73</elapsed><player1>34602</player1><sortorder>0</sortorder><team>9790</team><id>1067517</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>15</elapsed><player1>27734</player1><sortorder>0</sortorder><team>8600</team><id>3238855</id><n>22</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player2>31614</player2><player1>362194</player1><sortorder>0</sortorder><team>8600</team><id>3239203</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>66</value></coordinates><elapsed>43</elapsed><player2>36784</player2><subtype>shot</subtype><player1>425963</player1><sortorder>1</sortorder><team>10189</team><id>5227670</id><n>216</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>62</value></coordinates><elapsed>53</elapsed><player2>425963</player2><subtype>shot</subtype><player1>530859</player1><sortorder>1</sortorder><team>10189</team><id>5228025</id><n>293</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>26</value><value>8</value></coordinates><elapsed>45</elapsed><player2>41666</player2><subtype>header</subtype><player1>41413</player1><sortorder>1</sortorder><team>10167</team><id>3995662</id><n>117</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>406</event_incident_typefk><coordinates><value>25</value><value>68</value></coordinates><elapsed>45</elapsed><player2>38393</player2><subtype>header</subtype><player1>25594</player1><sortorder>13</sortorder><team>8543</team><id>3995722</id><n>134</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>28</value><value>66</value></coordinates><elapsed>59</elapsed><player2>106292</player2><subtype>shot</subtype><player1>230190</player1><sortorder>3</sortorder><team>8543</team><id>3995987</id><n>181</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>2</elapsed><player1>56916</player1><sortorder>0</sortorder><team>8639</team><id>1810355</id><n>20</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>12</elapsed><player1>26195</player1><sortorder>0</sortorder><team>8639</team><id>1810453</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player1>30563</player1><sortorder>0</sortorder><team>8639</team><id>1810535</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>37</elapsed><player1>37242</player1><sortorder>0</sortorder><team>8576</team><id>1810734</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>80</elapsed><player1>107417</player1><sortorder>0</sortorder><team>8639</team><id>1811153</id><n>28</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>71</elapsed><player2>42388</player2><subtype>header</subtype><player1>35421</player1><sortorder>4</sortorder><team>9875</team><id>903542</id><n>382</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>27</value><value>55</value></coordinates><elapsed>21</elapsed><player2>109298</player2><subtype>distance</subtype><player1>199834</player1><sortorder>0</sortorder><team>8592</team><id>5077466</id><n>77</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>4</elapsed><player1>38379</player1><sortorder>0</sortorder><team>8394</team><id>1408861</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>80</elapsed><player1>38475</player1><sortorder>0</sortorder><team>10278</team><id>1409675</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player1>30728</player1><sortorder>0</sortorder><team>10278</team><id>1409767</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>16</value><value>60</value></coordinates><elapsed>28</elapsed><player2>46509</player2><subtype>shot</subtype><player1>164676</player1><sortorder>3</sortorder><team>10260</team><id>4184204</id><n>128</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>4</value></coordinates><elapsed>30</elapsed><player2>127130</player2><subtype>shot</subtype><player1>144996</player1><sortorder>3</sortorder><team>10003</team><id>4184244</id><n>144</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>25</value><value>7</value></coordinates><elapsed>73</elapsed><player2>127130</player2><subtype>header</subtype><player1>26344</player1><sortorder>0</sortorder><team>10003</team><id>4185905</id><n>571</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>31</value><value>63</value></coordinates><elapsed>26</elapsed><player2>191080</player2><subtype>shot</subtype><player1>287231</player1><sortorder>2</sortorder><team>9905</team><id>5351464</id><n>248</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>16</value><value>16</value></coordinates><elapsed>64</elapsed><player2>49939</player2><subtype>distance</subtype><player1>30834</player1><sortorder>4</sortorder><team>9823</team><id>5352888</id><n>898</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>58</value></coordinates><elapsed>86</elapsed><player2>59595</player2><subtype>shot</subtype><player1>291425</player1><sortorder>1</sortorder><team>9905</team><id>5353647</id><n>835</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>649</event_incident_typefk><coordinates><value>24</value><value>3</value></coordinates><elapsed>38</elapsed><subtype>tap_in</subtype><player1>38336</player1><sortorder>1</sortorder><team>9829</team><id>3755345</id><n>283</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>15</elapsed><player1>38581</player1><sortorder>0</sortorder><team>9865</team><id>1262844</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>73</elapsed><player1>32865</player1><sortorder>0</sortorder><team>9869</team><id>1263604</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>25</value><value>64</value></coordinates><elapsed>34</elapsed><player2>166422</player2><subtype>header</subtype><player1>194165</player1><sortorder>2</sortorder><team>8586</team><id>4231867</id><n>170</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>28</value><value>64</value></coordinates><elapsed>69</elapsed><player2>160448</player2><subtype>shot</subtype><player1>194165</player1><sortorder>2</sortorder><team>8586</team><id>4232889</id><n>391</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>13</value></coordinates><elapsed>76</elapsed><player2>24741</player2><subtype>shot</subtype><player1>156727</player1><sortorder>0</sortorder><team>10172</team><id>4232972</id><n>414</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>47</elapsed><player2>37234</player2><subtype>shot</subtype><player1>40165</player1><sortorder>1</sortorder><team>8466</team><id>3026003</id><n>240</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>49</elapsed><subtype>direct_freekick</subtype><player1>39225</player1><sortorder>1</sortorder><team>8466</team><id>3026023</id><n>243</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>299</event_incident_typefk><elapsed>86</elapsed><subtype>header</subtype><player1>109491</player1><sortorder>2</sortorder><team>8466</team><id>3026600</id><n>176</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>29</elapsed><player2>29145</player2><player1>36084</player1><sortorder>0</sortorder><team>10269</team><id>3232948</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>76</elapsed><player2>172949</player2><player1>25366</player1><sortorder>0</sortorder><team>9823</team><id>3233425</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player2>27303</player2><player1>172949</player1><sortorder>2</sortorder><team>9823</team><id>3233476</id><n>33</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>44</elapsed><player2>26163</player2><subtype>volley</subtype><player1>26160</player1><sortorder>1</sortorder><team>10261</team><id>2459077</id><n>253</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>67</elapsed><player2>37475</player2><subtype>shot</subtype><player1>40636</player1><sortorder>1</sortorder><team>8650</team><id>2459351</id><n>284</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>36</elapsed><player1>150201</player1><sortorder>0</sortorder><team>9788</team><id>2654538</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>5</elapsed><player2>150250</player2><subtype>header</subtype><player1>30981</player1><sortorder>2</sortorder><team>8634</team><id>1008145</id><n>223</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>66</elapsed><subtype>shot</subtype><player1>30981</player1><sortorder>0</sortorder><team>8634</team><id>1008458</id><n>289</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>78</elapsed><player2>30955</player2><subtype>distance</subtype><player1>30981</player1><sortorder>3</sortorder><team>8634</team><id>1008526</id><n>306</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>85</elapsed><player2>27668</player2><subtype>shot</subtype><player1>102572</player1><sortorder>0</sortorder><team>8394</team><id>1008549</id><n>316</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>89</elapsed><player2>27668</player2><subtype>shot</subtype><player1>102572</player1><sortorder>1</sortorder><team>8394</team><id>1008560</id><n>328</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>20</event_incident_typefk><elapsed>90</elapsed><player1>35724</player1><sortorder>1</sortorder><team>8634</team><id>1008563</id><n>327</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>10</elapsed><player1>97747</player1><sortorder>0</sortorder><team>9905</team><id>2504064</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>28</elapsed><player1>25483</player1><sortorder>0</sortorder><team>9904</team><id>2504076</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player1>36774</player1><sortorder>0</sortorder><team>9905</team><id>2504938</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>10</elapsed><player2>41156</player2><subtype>header</subtype><player1>37506</player1><sortorder>1</sortorder><team>8305</team><id>653293</id><n>296</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>45</elapsed><player2>30655</player2><subtype>shot</subtype><player1>25759</player1><sortorder>4</sortorder><team>8633</team><id>653481</id><n>274</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>84</elapsed><player2>37461</player2><subtype>shot</subtype><player1>37469</player1><sortorder>1</sortorder><team>8305</team><id>653666</id><n>341</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>86</elapsed><subtype>direct_freekick</subtype><player1>32765</player1><sortorder>0</sortorder><team>8633</team><id>653681</id><n>348</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>159</event_incident_typefk><elapsed>89</elapsed><subtype>saved</subtype><player1>37471</player1><sortorder>0</sortorder><team>8305</team><id>653692</id><n>233</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>80</event_incident_typefk><elapsed>90</elapsed><subtype>shot</subtype><player1>25759</player1><sortorder>1</sortorder><team>8633</team><id>653712</id><n>350</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>52</elapsed><player2>26535</player2><subtype>shot</subtype><player1>26005</player1><sortorder>1</sortorder><team>8593</team><id>580966</id><n>258</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>40636</player2><subtype>shot</subtype><player1>30603</player1><sortorder>0</sortorder><team>8593</team><id>581039</id><n>303</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>61</value></coordinates><elapsed>67</elapsed><player2>41658</player2><subtype>shot</subtype><player1>193441</player1><sortorder>2</sortorder><team>9875</team><id>5044493</id><n>223</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>66</value></coordinates><elapsed>74</elapsed><player2>193441</player2><subtype>shot</subtype><player1>25759</player1><sortorder>1</sortorder><team>9875</team><id>5044567</id><n>291</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><elapsed>29</elapsed><subtype>shot</subtype><player1>30709</player1><sortorder>3</sortorder><team>9823</team><id>565627</id><n>82</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><elapsed>44</elapsed><subtype>header</subtype><player1>30496</player1><sortorder>1</sortorder><team>9790</team><id>565656</id><n>306</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>7</value></coordinates><elapsed>19</elapsed><player2>30881</player2><subtype>shot</subtype><player1>270774</player1><sortorder>1</sortorder><team>8540</team><id>5562507</id><n>162</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>20</value><value>2</value></coordinates><elapsed>85</elapsed><player1>121044</player1><sortorder>2</sortorder><team>9882</team><id>5564898</id><n>651</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>43</elapsed><player1>141145</player1><sortorder>0</sortorder><team>8165</team><id>2059253</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>74</elapsed><player1>150292</player1><sortorder>0</sortorder><team>8165</team><id>2059612</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>14</value><value>7</value></coordinates><elapsed>8</elapsed><subtype>shot</subtype><player1>210184</player1><sortorder>3</sortorder><team>9941</team><id>3781952</id><n>258</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>16</value><value>65</value></coordinates><elapsed>33</elapsed><player2>190972</player2><subtype>shot</subtype><player1>242958</player1><sortorder>2</sortorder><team>9847</team><id>3782631</id><n>291</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>2</elapsed><player2>26160</player2><subtype>header</subtype><player1>39987</player1><sortorder>2</sortorder><team>10261</team><id>3144655</id><n>197</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>38</elapsed><subtype>loose_ball</subtype><player1>31292</player1><sortorder>2</sortorder><team>10261</team><id>3145048</id><n>219</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>80</elapsed><player2>201664</player2><subtype>header</subtype><player1>109638</player1><sortorder>1</sortorder><team>9850</team><id>3145708</id><n>255</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>41</elapsed><player2>23916</player2><subtype>volley</subtype><player1>113631</player1><sortorder>10</sortorder><team>8655</team><id>2073435</id><n>290</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>49</elapsed><player2>119273</player2><subtype>distance</subtype><player1>113465</player1><sortorder>4</sortorder><team>8655</team><id>2073686</id><n>301</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>7</value></coordinates><elapsed>20</elapsed><player2>470539</player2><subtype>shot</subtype><player1>239259</player1><sortorder>2</sortorder><team>9831</team><id>5035020</id><n>107</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>26</value><value>8</value></coordinates><elapsed>48</elapsed><player1>93985</player1><sortorder>3</sortorder><team>9748</team><id>5035226</id><n>274</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>9</value></coordinates><elapsed>71</elapsed><player2>40537</player2><subtype>shot</subtype><player1>574633</player1><sortorder>2</sortorder><team>9831</team><id>5035309</id><n>400</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>42</elapsed><player1>12246</player1><sortorder>0</sortorder><team>9911</team><id>639357</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player1>12246</player1><sortorder>0</sortorder><team>9911</team><id>639969</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>69</elapsed><player1>12246</player1><sortorder>0</sortorder><team>9911</team><id>640210</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>40</elapsed><subtype>shot</subtype><player1>114769</player1><sortorder>0</sortorder><team>9857</team><id>1321251</id><n>262</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>49</elapsed><player2>39286</player2><subtype>header</subtype><player1>26223</player1><sortorder>3</sortorder><team>8533</team><id>1321274</id><n>286</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>39440</player2><subtype>shot</subtype><player1>32749</player1><sortorder>5</sortorder><team>9857</team><id>1321377</id><n>301</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>npm</comment><event_incident_typefk>159</event_incident_typefk><elapsed>36</elapsed><subtype>saved</subtype><player1>30712</player1><sortorder>0</sortorder><team>9885</team><id>1233948</id><n>104</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>24</elapsed><player2>42650</player2><player1>24500</player1><sortorder>0</sortorder><team>8524</team><id>3283508</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>71</elapsed><player1>27734</player1><sortorder>1</sortorder><team>8600</team><id>3284028</id><n>20</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>40</elapsed><player1>96652</player1><sortorder>0</sortorder><team>8603</team><id>2025257</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>2768</player1><sortorder>0</sortorder><team>8603</team><id>2025258</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>1</elapsed><player1>26144</player1><sortorder>0</sortorder><team>9827</team><id>2075928</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>29</elapsed><player1>26144</player1><sortorder>0</sortorder><team>9827</team><id>2076051</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player1>154280</player1><sortorder>0</sortorder><team>8592</team><id>2076203</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>11</elapsed><player2>41232</player2><subtype>shot</subtype><player1>239807</player1><sortorder>11</sortorder><team>8659</team><id>3421450</id><n>268</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>18</elapsed><player1>46700</player1><sortorder>0</sortorder><team>8358</team><id>1026002</id><n>15</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>23</elapsed><player1>36051</player1><sortorder>0</sortorder><team>9911</team><id>1026019</id><n>13</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>167</event_incident_typefk><coordinates><value>17</value><value>5</value></coordinates><elapsed>50</elapsed><subtype>bicycle_kick</subtype><player1>38098</player1><sortorder>4</sortorder><team>8592</team><id>3747146</id><n>288</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>22</value><value>15</value></coordinates><elapsed>63</elapsed><subtype>distance</subtype><player1>38098</player1><sortorder>5</sortorder><team>8592</team><id>3747320</id><n>320</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>4</elapsed_plus><event_incident_typefk>130</event_incident_typefk><coordinates><value>33</value><value>14</value></coordinates><elapsed>90</elapsed><subtype>direct_freekick</subtype><player1>210398</player1><sortorder>9</sortorder><team>8592</team><id>3747763</id><n>328</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>20</elapsed><player1>18734</player1><sortorder>0</sortorder><team>9831</team><id>2926360</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>156556</player1><sortorder>0</sortorder><team>9851</team><id>2926419</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>50</elapsed><player1>40537</player1><sortorder>0</sortorder><team>9831</team><id>2926485</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>6</elapsed><player1>27665</player1><sortorder>0</sortorder><team>9888</team><id>2000672</id><n>23</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>15</elapsed><player1>164029</player1><sortorder>0</sortorder><team>8540</team><id>2000767</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>62</value></coordinates><elapsed>79</elapsed><player2>27657</player2><subtype>shot</subtype><player1>154249</player1><sortorder>3</sortorder><team>9857</team><id>5292494</id><n>471</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>12</elapsed><player1>31906</player1><sortorder>0</sortorder><team>8639</team><id>3017273</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>32</elapsed><player1>25329</player1><sortorder>0</sortorder><team>4087</team><id>3017302</id><n>18</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>71</elapsed><player1>145061</player1><sortorder>0</sortorder><team>8639</team><id>3017453</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>50</elapsed><player1>35244</player1><sortorder>0</sortorder><team>8543</team><id>3029253</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>54</elapsed><player1>11685</player1><sortorder>0</sortorder><team>8543</team><id>3029276</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player1>182765</player1><sortorder>0</sortorder><team>7943</team><id>3029293</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>77</elapsed><player1>41542</player1><sortorder>0</sortorder><team>7943</team><id>3029420</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>4</elapsed><player2>94033</player2><player1>490181</player1><sortorder>0</sortorder><team>8576</team><id>3406344</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>32</elapsed><player2>155623</player2><player1>277439</player1><sortorder>0</sortorder><team>7794</team><id>3406640</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>88</elapsed><player2>155623</player2><player1>33812</player1><sortorder>0</sortorder><team>7794</team><id>3407443</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>38</value><value>14</value></coordinates><elapsed>18</elapsed><subtype>direct_freekick</subtype><player1>145070</player1><sortorder>0</sortorder><team>9853</team><id>4345313</id><n>115</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>31</elapsed><player1>38578</player1><sortorder>0</sortorder><team>8558</team><id>2521149</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>30893</player1><sortorder>0</sortorder><team>8633</team><id>2521187</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>48</elapsed><player1>29590</player1><sortorder>0</sortorder><team>8633</team><id>2521192</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>88</elapsed><player1>37469</player1><sortorder>0</sortorder><team>8558</team><id>2521299</id><n>28</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>9</elapsed><player1>32749</player1><sortorder>3</sortorder><team>9857</team><id>560410</id><n>230</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>13</elapsed><subtype>loose_ball</subtype><player1>26096</player1><sortorder>1</sortorder><team>8564</team><id>560459</id><n>233</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>16</elapsed><player1>41044</player1><sortorder>1</sortorder><team>8564</team><id>560488</id><n>239</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>43</elapsed><player2>46554</player2><subtype>distance</subtype><player1>41044</player1><sortorder>2</sortorder><team>8564</team><id>560676</id><n>273</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>60</elapsed><player2>26096</player2><subtype>shot</subtype><player1>30612</player1><sortorder>1</sortorder><team>8564</team><id>560932</id><n>296</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>9</elapsed><subtype>saved_back_into_play</subtype><player1>32734</player1><sortorder>0</sortorder><team>8659</team><id>3988665</id><n>42</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>6</value></coordinates><elapsed>30</elapsed><player2>42860</player2><subtype>header</subtype><player1>41927</player1><sortorder>1</sortorder><team>8697</team><id>3925539</id><n>93</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>10</value></coordinates><elapsed>57</elapsed><player2>42860</player2><subtype>shot</subtype><player1>35852</player1><sortorder>1</sortorder><team>8697</team><id>3926160</id><n>202</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>11</elapsed><player1>31498</player1><sortorder>0</sortorder><team>8661</team><id>481976</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>43</elapsed><player1>33025</player1><sortorder>0</sortorder><team>8315</team><id>482578</id><n>26</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>57</elapsed><player1>38398</player1><sortorder>0</sortorder><team>8661</team><id>482852</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>74</elapsed><player1>38398</player1><sortorder>0</sortorder><team>8661</team><id>482999</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>78</elapsed><player1>96620</player1><sortorder>0</sortorder><team>8315</team><id>483071</id><n>31</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>33030</player1><sortorder>0</sortorder><team>8315</team><id>483242</id><n>32</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>dg</comment><event_incident_typefk>346</event_incident_typefk><elapsed>30</elapsed><player1>24491</player1><sortorder>3</sortorder><team>9882</team><id>1554922</id><n>139</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>45</elapsed><player2>147951</player2><subtype>shot</subtype><player1>32747</player1><sortorder>1</sortorder><team>8540</team><id>1555141</id><n>433</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>50</elapsed><player2>24793</player2><subtype>header</subtype><player1>40686</player1><sortorder>1</sortorder><team>9882</team><id>1555334</id><n>446</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>86</elapsed><player2>105548</player2><subtype>shot</subtype><player1>35575</player1><sortorder>6</sortorder><team>8540</team><id>1555859</id><n>526</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>47</elapsed><player1>37824</player1><sortorder>0</sortorder><team>10267</team><id>1030071</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player1>30909</player1><sortorder>0</sortorder><team>10267</team><id>1030424</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>90</elapsed><player1>30909</player1><sortorder>0</sortorder><team>10267</team><id>1030434</id><n>21</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>56</elapsed><subtype>shot</subtype><player1>38755</player1><sortorder>1</sortorder><team>10194</team><id>1275928</id><n>348</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>34601</player2><subtype>shot</subtype><player1>30988</player1><sortorder>1</sortorder><team>10194</team><id>1276209</id><n>397</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>30</elapsed><player2>36784</player2><subtype>distance</subtype><player1>243164</player1><sortorder>0</sortorder><team>10189</team><id>2117108</id><n>236</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>41</elapsed><player1>25366</player1><sortorder>1</sortorder><team>8697</team><id>2117245</id><n>248</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>65</elapsed><subtype>shot</subtype><player1>36784</player1><sortorder>0</sortorder><team>10189</team><id>2117594</id><n>277</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>74</elapsed><subtype>shot</subtype><player1>36784</player1><sortorder>5</sortorder><team>10189</team><id>2117715</id><n>286</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>82</elapsed><player2>27316</player2><subtype>header</subtype><player1>25366</player1><sortorder>3</sortorder><team>8697</team><id>2117823</id><n>299</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>19</elapsed><player1>18576</player1><sortorder>0</sortorder><team>9789</team><id>887585</id><n>14</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>19</elapsed><player2>27316</player2><player1>42860</player1><sortorder>0</sortorder><team>8697</team><id>3296515</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>25</elapsed><player1>121957</player1><sortorder>0</sortorder><team>8226</team><id>679823</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>82</elapsed><player1>36011</player1><sortorder>0</sortorder><team>8226</team><id>680287</id><n>22</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>21</value><value>56</value></coordinates><elapsed>32</elapsed><player2>95078</player2><subtype>distance</subtype><player1>31097</player1><sortorder>3</sortorder><team>8633</team><id>3780885</id><n>281</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>62</value></coordinates><elapsed>40</elapsed><player2>26166</player2><subtype>shot</subtype><player1>30893</player1><sortorder>3</sortorder><team>8633</team><id>3781113</id><n>286</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>106369</player1><sortorder>0</sortorder><team>8177</team><id>1972947</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>26</value><value>6</value></coordinates><elapsed>30</elapsed><player1>145061</player1><sortorder>5</sortorder><team>7819</team><id>5451605</id><n>155</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>22</value><value>6</value></coordinates><elapsed>85</elapsed><player2>26406</player2><subtype>volley</subtype><player1>169865</player1><sortorder>1</sortorder><team>9941</team><id>5452834</id><n>419</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>38432</player1><sortorder>0</sortorder><team>9788</team><id>680372</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>129944</player1><sortorder>2</sortorder><team>9789</team><id>3126885</id><n>31</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player1>115591</player1><sortorder>0</sortorder><team>8721</team><id>3127229</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>69</elapsed><player1>30764</player1><sortorder>0</sortorder><team>8721</team><id>3127311</id><n>29</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>10</elapsed><player2>71353</player2><subtype>shot</subtype><player1>27316</player1><sortorder>2</sortorder><team>8697</team><id>921510</id><n>272</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>25</elapsed><player2>30872</player2><subtype>shot</subtype><player1>116772</player1><sortorder>2</sortorder><team>9823</team><id>921553</id><n>285</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>35</elapsed><player2>30894</player2><subtype>shot</subtype><player1>30764</player1><sortorder>2</sortorder><team>9823</team><id>921615</id><n>308</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>75</elapsed><player2>71353</player2><subtype>volley</subtype><player1>37550</player1><sortorder>2</sortorder><team>8697</team><id>921999</id><n>367</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>78</elapsed><subtype>direct_freekick</subtype><player1>30834</player1><sortorder>0</sortorder><team>9823</team><id>922018</id><n>372</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><coordinates><value>23</value><value>4</value></coordinates><elapsed>8</elapsed><subtype>shot</subtype><player1>41269</player1><sortorder>0</sortorder><team>8564</team><id>5065407</id><n>42</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>20</value><value>2</value></coordinates><elapsed>16</elapsed><player2>46241</player2><subtype>tap_in</subtype><player1>127460</player1><sortorder>0</sortorder><team>8564</team><id>5065503</id><n>70</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>38</elapsed><player1>46241</player1><sortorder>2</sortorder><team>8564</team><id>5065932</id><n>226</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>26</value><value>8</value></coordinates><elapsed>49</elapsed><subtype>shot</subtype><player1>46241</player1><sortorder>7</sortorder><team>8564</team><id>5066359</id><n>324</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>4</value></coordinates><elapsed>79</elapsed><player2>41269</player2><subtype>shot</subtype><player1>47041</player1><sortorder>0</sortorder><team>8564</team><id>5066653</id><n>447</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>87</elapsed><player1>39295</player1><sortorder>1</sortorder><team>9882</team><id>5066717</id><n>465</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>62</value></coordinates><elapsed>44</elapsed><player2>158234</player2><subtype>shot</subtype><player1>170775</player1><sortorder>3</sortorder><team>9810</team><id>3790633</id><n>266</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>7</value></coordinates><elapsed>58</elapsed><player2>128827</player2><subtype>shot</subtype><player1>97747</player1><sortorder>3</sortorder><team>9790</team><id>3791026</id><n>298</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>25</value><value>51</value></coordinates><elapsed>90</elapsed><subtype>direct_freekick</subtype><player1>267380</player1><sortorder>0</sortorder><team>9810</team><id>3791312</id><n>324</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>21</value><value>4</value></coordinates><elapsed>54</elapsed><player2>317156</player2><subtype>header</subtype><player1>362195</player1><sortorder>1</sortorder><team>9882</team><id>4533325</id><n>204</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>882</event_incident_typefk><coordinates><value>30</value><value>64</value></coordinates><elapsed>74</elapsed><player2>33816</player2><subtype>lob</subtype><player1>41413</player1><sortorder>3</sortorder><team>10167</team><id>4533676</id><n>301</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>7</value></coordinates><elapsed>79</elapsed><player2>33639</player2><subtype>shot</subtype><player1>25587</player1><sortorder>4</sortorder><team>9882</team><id>4533743</id><n>332</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><coordinates><value>19</value><value>56</value></coordinates><elapsed>88</elapsed><subtype>volley</subtype><player1>40187</player1><sortorder>3</sortorder><team>10167</team><id>4533883</id><n>366</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>882</event_incident_typefk><coordinates><value>16</value><value>63</value></coordinates><elapsed>2</elapsed><player2>184533</player2><subtype>lob</subtype><player1>30853</player1><sortorder>3</sortorder><team>9906</team><id>5589000</id><n>387</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>25</value><value>7</value></coordinates><elapsed>31</elapsed><player2>346379</player2><subtype>header</subtype><player1>25462</player1><sortorder>0</sortorder><team>8581</team><id>5589801</id><n>293</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>12</value></coordinates><elapsed>90</elapsed><player2>477472</player2><subtype>shot</subtype><player1>38699</player1><sortorder>2</sortorder><team>8581</team><id>5591793</id><n>737</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>17</value><value>5</value></coordinates><elapsed>18</elapsed><subtype>shot</subtype><player1>144996</player1><sortorder>4</sortorder><team>10003</team><id>4310160</id><n>87</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>167</event_incident_typefk><coordinates><value>22</value><value>7</value></coordinates><elapsed>37</elapsed><subtype>bicycle_kick</subtype><player1>26344</player1><sortorder>3</sortorder><team>10003</team><id>4310865</id><n>164</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>27</value><value>64</value></coordinates><elapsed>50</elapsed><player2>35480</player2><subtype>tap_in</subtype><player1>40132</player1><sortorder>1</sortorder><team>8667</team><id>4311920</id><n>229</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>882</event_incident_typefk><coordinates><value>29</value><value>10</value></coordinates><elapsed>90</elapsed><player2>157729</player2><subtype>lob</subtype><player1>26344</player1><sortorder>10</sortorder><team>10003</team><id>4313142</id><n>471</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>77</elapsed><player1>95597</player1><sortorder>0</sortorder><team>4087</team><id>2684385</id><n>16</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>26</elapsed><player2>35638</player2><subtype>shot</subtype><player1>150649</player1><sortorder>4</sortorder><team>8696</team><id>902341</id><n>298</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>38</elapsed><player2>37845</player2><subtype>shot</subtype><player1>150649</player1><sortorder>3</sortorder><team>8696</team><id>902380</id><n>308</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>62</elapsed><subtype>shot</subtype><player1>31014</player1><sortorder>4</sortorder><team>8302</team><id>902522</id><n>338</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>76</elapsed><player1>128037</player1><sortorder>0</sortorder><team>8696</team><id>1177597</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>149584</player1><sortorder>0</sortorder><team>8696</team><id>1177698</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>288</event_incident_typefk><coordinates><value>24</value><value>57</value></coordinates><elapsed>33</elapsed><subtype>deflected</subtype><player1>37412</player1><sortorder>5</sortorder><team>8456</team><id>5500179</id><n>246</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>14</value><value>62</value></coordinates><elapsed>54</elapsed><player2>26181</player2><subtype>shot</subtype><player1>37412</player1><sortorder>1</sortorder><team>8456</team><id>5500579</id><n>307</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>81</elapsed><player1>37412</player1><sortorder>0</sortorder><team>8456</team><id>5501076</id><n>455</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><elapsed>10</elapsed><subtype>volley</subtype><player1>23538</player1><sortorder>2</sortorder><team>8602</team><id>1213950</id><n>146</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>53</elapsed><player1>37169</player1><sortorder>1</sortorder><team>8654</team><id>1214668</id><n>182</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>38822</player1><sortorder>0</sortorder><team>9864</team><id>2698509</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>33</elapsed><player1>72518</player1><sortorder>0</sortorder><team>10233</team><id>2606637</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>28</value><value>67</value></coordinates><elapsed>73</elapsed><player2>52133</player2><subtype>header</subtype><player1>35724</player1><sortorder>2</sortorder><team>9847</team><id>5183220</id><n>733</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><coordinates><value>26</value><value>6</value></coordinates><elapsed>35</elapsed><subtype>volley</subtype><player1>26392</player1><sortorder>1</sortorder><team>8302</team><id>4948448</id><n>332</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>15</value><value>4</value></coordinates><elapsed>45</elapsed><player2>108568</player2><subtype>shot</subtype><player1>26392</player1><sortorder>5</sortorder><team>8302</team><id>4948644</id><n>327</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>50</elapsed><player1>108568</player1><sortorder>0</sortorder><team>8302</team><id>4948960</id><n>367</n><type>goal</type><goal_type>p</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>60</elapsed><player1>26392</player1><sortorder>2</sortorder><team>8302</team><id>4949074</id><n>433</n><type>goal</type><goal_type>p</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>81</elapsed><player1>103450</player1><sortorder>0</sortorder><team>8302</team><id>4949242</id><n>510</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>28</value><value>4</value></coordinates><elapsed>89</elapsed><player2>177941</player2><subtype>tap_in</subtype><player1>304856</player1><sortorder>6</sortorder><team>9851</team><id>3920740</id><n>259</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>66</value></coordinates><elapsed>26</elapsed><player2>109651</player2><subtype>shot</subtype><player1>435960</player1><sortorder>1</sortorder><team>9847</team><id>5039127</id><n>106</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>65</value></coordinates><elapsed>33</elapsed><player2>35724</player2><subtype>shot</subtype><player1>26419</player1><sortorder>0</sortorder><team>9847</team><id>5039264</id><n>206</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>23</value><value>4</value></coordinates><elapsed>82</elapsed><player2>420867</player2><subtype>header</subtype><player1>131995</player1><sortorder>1</sortorder><team>8689</team><id>5039941</id><n>507</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>28</value><value>20</value></coordinates><elapsed>5</elapsed><subtype>direct_freekick</subtype><player1>360560</player1><sortorder>0</sortorder><team>9791</team><id>4682302</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>649</event_incident_typefk><coordinates><value>24</value><value>5</value></coordinates><elapsed>53</elapsed><subtype>tap_in</subtype><player1>243439</player1><sortorder>1</sortorder><team>9791</team><id>4683077</id><n>219</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>30</value><value>8</value></coordinates><elapsed>74</elapsed><player2>360560</player2><subtype>shot</subtype><player1>351999</player1><sortorder>1</sortorder><team>9791</team><id>4683340</id><n>323</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>38</elapsed><player1>70409</player1><sortorder>0</sortorder><team>10260</team><id>1909262</id><n>237</n><type>goal</type><goal_type>p</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>53</elapsed><player1>27430</player1><sortorder>0</sortorder><team>10260</team><id>1909476</id><n>250</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>22</elapsed><player2>38433</player2><subtype>header</subtype><player1>18628</player1><sortorder>1</sortorder><team>10205</team><id>1364215</id><n>238</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><elapsed>48</elapsed><subtype>header</subtype><player1>26044</player1><sortorder>0</sortorder><team>8371</team><id>1364498</id><n>256</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>50</elapsed><subtype>distance</subtype><player1>37480</player1><sortorder>0</sortorder><team>10205</team><id>1364510</id><n>253</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><elapsed>65</elapsed><subtype>header</subtype><player1>40599</player1><sortorder>3</sortorder><team>10205</team><id>1364644</id><n>276</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>71</elapsed><subtype>shot</subtype><player1>38479</player1><sortorder>3</sortorder><team>8371</team><id>1364673</id><n>279</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><elapsed>84</elapsed><subtype>header</subtype><player1>38458</player1><sortorder>1</sortorder><team>10205</team><id>1364774</id><n>293</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>14</value><value>10</value></coordinates><elapsed>22</elapsed><subtype>shot</subtype><player1>183365</player1><sortorder>1</sortorder><team>9783</team><id>4016930</id><n>146</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>5</elapsed><player2>156008</player2><subtype>shot</subtype><player1>40636</player1><sortorder>3</sortorder><team>8650</team><id>2573516</id><n>221</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>60</elapsed><player2>51553</player2><subtype>shot</subtype><player1>156008</player1><sortorder>2</sortorder><team>8650</team><id>2574217</id><n>285</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>65</elapsed><player2>143793</player2><subtype>header</subtype><player1>46469</player1><sortorder>1</sortorder><team>9825</team><id>2574256</id><n>287</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>67</elapsed><player2>46469</player2><subtype>shot</subtype><player1>31013</player1><sortorder>1</sortorder><team>9825</team><id>2574278</id><n>288</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>61</value></coordinates><elapsed>90</elapsed><player2>574642</player2><subtype>shot</subtype><player1>40659</player1><sortorder>7</sortorder><team>10249</team><id>4462248</id><n>344</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><elapsed>29</elapsed><player1>37554</player1><sortorder>0</sortorder><team>10192</team><id>5504925</id><n>6</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>30</elapsed><player1>147959</player1><sortorder>0</sortorder><team>10192</team><id>5504935</id><n>7</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>34</elapsed><player1>94553</player1><sortorder>0</sortorder><team>10192</team><id>5504998</id><n>12</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>42</elapsed><player1>254704</player1><sortorder>0</sortorder><team>9824</team><id>5505098</id><n>13</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>49</elapsed><player1>108451</player1><sortorder>0</sortorder><team>10192</team><id>5505474</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>54</elapsed><player1>37554</player1><sortorder>0</sortorder><team>10192</team><id>5505546</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>61</elapsed><player1>37554</player1><sortorder>0</sortorder><team>10192</team><id>5505663</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>76</elapsed><player1>25813</player1><sortorder>0</sortorder><team>9824</team><id>5505991</id><n>31</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>78</elapsed><player1>41621</player1><sortorder>0</sortorder><team>9824</team><id>5506019</id><n>32</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>4</elapsed><player2>35724</player2><subtype>shot</subtype><player1>27335</player1><sortorder>3</sortorder><team>8564</team><id>1313888</id><n>197</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>28</elapsed><subtype>shot</subtype><player1>33974</player1><sortorder>4</sortorder><team>8564</team><id>1314009</id><n>216</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>31</elapsed><subtype>shot</subtype><player1>35724</player1><sortorder>1</sortorder><team>8564</team><id>1314014</id><n>218</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>25</elapsed><player2>24773</player2><subtype>header</subtype><player1>23818</player1><sortorder>0</sortorder><team>10194</team><id>1964069</id><n>173</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>39</elapsed><player2>106910</player2><subtype>header</subtype><player1>30830</player1><sortorder>1</sortorder><team>10194</team><id>1964226</id><n>183</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>21</value><value>67</value></coordinates><elapsed>81</elapsed><player2>110189</player2><subtype>header</subtype><player1>363333</player1><sortorder>3</sortorder><team>8586</team><id>4697541</id><n>424</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>34</value><value>9</value></coordinates><elapsed>82</elapsed><player2>286119</player2><subtype>shot</subtype><player1>278343</player1><sortorder>2</sortorder><team>8197</team><id>4697562</id><n>445</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>20</value><value>3</value></coordinates><elapsed>44</elapsed><player1>118616</player1><sortorder>3</sortorder><team>8540</team><id>4842323</id><n>252</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>34</value><value>7</value></coordinates><elapsed>48</elapsed><player2>33640</player2><subtype>volley</subtype><player1>362113</player1><sortorder>0</sortorder><team>9804</team><id>4842613</id><n>263</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>28</value><value>66</value></coordinates><elapsed>71</elapsed><player2>270774</player2><subtype>header</subtype><player1>118616</player1><sortorder>2</sortorder><team>8540</team><id>4843133</id><n>399</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>1</elapsed><player2>30626</player2><subtype>shot</subtype><player1>30955</player1><sortorder>2</sortorder><team>8634</team><id>641416</id><n>242</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><elapsed>65</elapsed><subtype>shot</subtype><player1>30626</player1><sortorder>2</sortorder><team>8634</team><id>641773</id><n>174</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>67</elapsed><player1>42310</player1><sortorder>4</sortorder><team>8479</team><id>641779</id><n>306</n><type>goal</type><goal_type>o</goal_type></value><value><comment>npm</comment><event_incident_typefk>159</event_incident_typefk><elapsed>81</elapsed><subtype>saved</subtype><player1>30981</player1><sortorder>2</sortorder><team>8634</team><id>641814</id><n>183</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><elapsed>82</elapsed><subtype>shot</subtype><player1>12005</player1><sortorder>1</sortorder><team>8479</team><id>641819</id><n>208</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>63</value></coordinates><elapsed>6</elapsed><player2>500502</player2><subtype>shot</subtype><player1>167634</player1><sortorder>1</sortorder><team>9857</team><id>5005633</id><n>31</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>13</value><value>63</value></coordinates><elapsed>14</elapsed><player2>154249</player2><subtype>shot</subtype><player1>518663</player1><sortorder>3</sortorder><team>9857</team><id>5005708</id><n>85</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>20</value><value>3</value></coordinates><elapsed>54</elapsed><subtype>shot</subtype><player1>288349</player1><sortorder>2</sortorder><team>8464</team><id>5506434</id><n>483</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>10</value></coordinates><elapsed>69</elapsed><player2>215419</player2><subtype>shot</subtype><player1>196957</player1><sortorder>1</sortorder><team>8464</team><id>5506749</id><n>365</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>59</value></coordinates><elapsed>76</elapsed><player2>179218</player2><subtype>shot</subtype><player1>104003</player1><sortorder>3</sortorder><team>7788</team><id>5506855</id><n>388</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>15</value><value>5</value></coordinates><elapsed>77</elapsed><player2>37756</player2><subtype>shot</subtype><player1>158886</player1><sortorder>1</sortorder><team>9830</team><id>4700997</id><n>346</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>18</value><value>8</value></coordinates><elapsed>20</elapsed><subtype>shot</subtype><player1>331542</player1><sortorder>3</sortorder><team>9905</team><id>3842614</id><n>400</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>25</value><value>5</value></coordinates><elapsed>23</elapsed><subtype>shot</subtype><player1>287231</player1><sortorder>5</sortorder><team>9905</team><id>3842653</id><n>402</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>20</value><value>63</value></coordinates><elapsed>78</elapsed><player2>324910</player2><subtype>header</subtype><player1>26982</player1><sortorder>2</sortorder><team>8406</team><id>3844233</id><n>466</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>29</value><value>55</value></coordinates><elapsed>14</elapsed><subtype>distance</subtype><player1>282182</player1><sortorder>2</sortorder><team>8406</team><id>5253620</id><n>432</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>25</value><value>4</value></coordinates><elapsed>59</elapsed><player2>34675</player2><subtype>header</subtype><player1>27550</player1><sortorder>2</sortorder><team>8234</team><id>5255279</id><n>632</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>85</elapsed><player1>171091</player1><sortorder>1</sortorder><team>8234</team><id>5255914</id><n>886</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>24</elapsed><player2>23354</player2><subtype>header</subtype><player1>24751</player1><sortorder>1</sortorder><team>10252</team><id>1498841</id><n>249</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>1</elapsed><player1>96652</player1><sortorder>0</sortorder><team>8603</team><id>2788300</id><n>32</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>17</elapsed><player1>158263</player1><sortorder>0</sortorder><team>8603</team><id>2788318</id><n>33</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>50</elapsed><player1>2983</player1><sortorder>0</sortorder><team>8603</team><id>2788389</id><n>31</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>71</elapsed><player1>158263</player1><sortorder>0</sortorder><team>8603</team><id>2788464</id><n>28</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>10</value></coordinates><elapsed>49</elapsed><player2>41468</player2><subtype>shot</subtype><player1>161012</player1><sortorder>1</sortorder><team>10260</team><id>4761564</id><n>235</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>70</elapsed><player1>164676</player1><sortorder>1</sortorder><team>10260</team><id>4761991</id><n>338</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>167</event_incident_typefk><coordinates><value>28</value><value>62</value></coordinates><elapsed>84</elapsed><subtype>bicycle_kick</subtype><player1>148315</player1><sortorder>6</sortorder><team>8650</team><id>4762322</id><n>407</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>7</value></coordinates><elapsed>86</elapsed><player2>23354</player2><subtype>shot</subtype><player1>413557</player1><sortorder>2</sortorder><team>10260</team><id>4762358</id><n>428</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>48</elapsed><player1>191315</player1><sortorder>0</sortorder><team>9864</team><id>1785486</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>66</elapsed><player1>40501</player1><sortorder>0</sortorder><team>8696</team><id>1785563</id><n>23</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>70</elapsed><player1>97319</player1><sortorder>0</sortorder><team>8696</team><id>1785564</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player1>56819</player1><sortorder>0</sortorder><team>9864</team><id>1785619</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>9</elapsed><player1>38578</player1><sortorder>0</sortorder><team>8558</team><id>2672812</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>23</elapsed><player1>99047</player1><sortorder>0</sortorder><team>8560</team><id>2672857</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>39</elapsed><player1>58294</player1><sortorder>0</sortorder><team>8558</team><id>2672935</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>76</elapsed><player1>185123</player1><sortorder>0</sortorder><team>8558</team><id>2673130</id><n>28</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><elapsed>52</elapsed><player2>37401</player2><subtype>tap_in</subtype><player1>27642</player1><sortorder>33</sortorder><team>10269</team><id>1688042</id><n>387</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><elapsed>69</elapsed><player2>27234</player2><subtype>deflected</subtype><player1>37401</player1><sortorder>0</sortorder><team>10269</team><id>1688093</id><n>414</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>64</elapsed><player1>181197</player1><sortorder>0</sortorder><team>9837</team><id>3267084</id><n>14</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>72</elapsed><player2>31435</player2><subtype>header</subtype><player1>27277</player1><sortorder>3</sortorder><team>9825</team><id>949209</id><n>361</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>9</elapsed><player1>27734</player1><sortorder>0</sortorder><team>8600</team><id>2486745</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>46</elapsed><player1>35643</player1><sortorder>0</sortorder><team>10167</team><id>2486881</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>50</elapsed><player1>210278</player1><sortorder>0</sortorder><team>8600</team><id>2486896</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player1>41413</player1><sortorder>0</sortorder><team>10167</team><id>2486968</id><n>32</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>13</elapsed><player1>27613</player1><sortorder>0</sortorder><team>8537</team><id>3446500</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>18</elapsed><player1>27734</player1><sortorder>0</sortorder><team>8600</team><id>3446558</id><n>3</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>19</elapsed><player2>422685</player2><player1>27734</player1><sortorder>0</sortorder><team>8600</team><id>3446565</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>21</elapsed><player2>422685</player2><player1>192325</player1><sortorder>0</sortorder><team>8600</team><id>3446579</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>29</elapsed><player1>27613</player1><sortorder>1</sortorder><team>8537</team><id>3446645</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player2>202341</player2><player1>210278</player1><sortorder>0</sortorder><team>8600</team><id>3446684</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player2>188652</player2><player1>202341</player1><sortorder>0</sortorder><team>8600</team><id>3446803</id><n>31</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player2>27731</player2><player1>27734</player1><sortorder>0</sortorder><team>8600</team><id>3446823</id><n>32</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>88</elapsed><player2>27613</player2><player1>41605</player1><sortorder>0</sortorder><team>8537</team><id>3447239</id><n>36</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>68</elapsed><player2>37920</player2><subtype>distance</subtype><player1>30618</player1><sortorder>0</sortorder><team>8650</team><id>556659</id><n>206</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>87</elapsed><player2>24011</player2><subtype>header</subtype><player1>30876</player1><sortorder>1</sortorder><team>8668</team><id>556684</id><n>254</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>2</elapsed><player2>115591</player2><player1>354495</player1><sortorder>0</sortorder><team>8721</team><id>3344610</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>10</elapsed><player2>298915</player2><player1>163670</player1><sortorder>0</sortorder><team>8721</team><id>3344642</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player2>26195</player2><player1>41927</player1><sortorder>0</sortorder><team>8697</team><id>3344662</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>80</elapsed><player1>298915</player1><sortorder>0</sortorder><team>8721</team><id>3345256</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>23</elapsed><player1>303824</player1><sortorder>0</sortorder><team>8640</team><id>4233815</id><n>7</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>39</elapsed><player1>21765</player1><sortorder>0</sortorder><team>6433</team><id>4233915</id><n>14</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>31045</player1><sortorder>0</sortorder><team>8640</team><id>4233961</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>37</elapsed><player1>40686</player1><sortorder>0</sortorder><team>10167</team><id>2140633</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>30</elapsed><player2>41360</player2><player1>26344</player1><sortorder>0</sortorder><team>9748</team><id>3371213</id><n>32</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>66</elapsed><player2>418137</player2><player1>196947</player1><sortorder>0</sortorder><team>9873</team><id>3371551</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>69</elapsed><player2>26324</player2><player1>210119</player1><sortorder>0</sortorder><team>9748</team><id>3371593</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>87</elapsed><player1>196947</player1><sortorder>0</sortorder><team>9873</team><id>3371777</id><n>21</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>26</elapsed><player1>36011</player1><sortorder>0</sortorder><team>8226</team><id>2038273</id><n>20</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>71</elapsed><player1>141160</player1><sortorder>0</sortorder><team>8226</team><id>2039250</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>87</elapsed><player1>27535</player1><sortorder>0</sortorder><team>8350</team><id>2039437</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player1>213729</player1><sortorder>0</sortorder><team>10267</team><id>2485625</id><n>33</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>31</elapsed><player1>195589</player1><sortorder>0</sortorder><team>8558</team><id>2485687</id><n>35</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>90</elapsed><player1>37506</player1><sortorder>0</sortorder><team>10267</team><id>2485931</id><n>44</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>25</value><value>66</value></coordinates><elapsed>13</elapsed><player2>46509</player2><subtype>header</subtype><player1>49677</player1><sortorder>1</sortorder><team>9847</team><id>5581929</id><n>55</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>28</value><value>67</value></coordinates><elapsed>49</elapsed><player2>46509</player2><subtype>shot</subtype><player1>49677</player1><sortorder>1</sortorder><team>9847</team><id>5582848</id><n>224</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>65</value></coordinates><elapsed>58</elapsed><player2>215798</player2><subtype>header</subtype><player1>49677</player1><sortorder>1</sortorder><team>9847</team><id>5583072</id><n>283</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>407</event_incident_typefk><coordinates><value>19</value><value>58</value></coordinates><elapsed>90</elapsed><player2>34304</player2><subtype>distance</subtype><player1>35724</player1><sortorder>10</sortorder><team>9847</team><id>5583946</id><n>456</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>26</elapsed><player2>33872</player2><subtype>header</subtype><player1>58294</player1><sortorder>3</sortorder><team>8581</team><id>1250445</id><n>314</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>64</elapsed><player2>103904</player2><subtype>shot</subtype><player1>200630</player1><sortorder>2</sortorder><team>8661</team><id>1250615</id><n>352</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>85</elapsed><player2>24123</player2><subtype>header</subtype><player1>25574</player1><sortorder>1</sortorder><team>8661</team><id>1250728</id><n>380</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>61</elapsed><player1>37545</player1><sortorder>0</sortorder><team>8535</team><id>2698484</id><n>23</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>72</elapsed><player1>165624</player1><sortorder>0</sortorder><team>8535</team><id>2698489</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>45</elapsed><player1>157288</player1><sortorder>0</sortorder><team>9831</team><id>3447680</id><n>24</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player2>165583</player2><player1>154280</player1><sortorder>0</sortorder><team>9874</team><id>3447879</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>18</elapsed><player1>22543</player1><sortorder>0</sortorder><team>9829</team><id>2927018</id><n>23</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>24</elapsed><player1>26014</player1><sortorder>0</sortorder><team>10249</team><id>2927041</id><n>32</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>161420</player1><sortorder>0</sortorder><team>9829</team><id>2927164</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>57</elapsed><player1>161420</player1><sortorder>0</sortorder><team>9829</team><id>2927325</id><n>31</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>80</elapsed><player1>161420</player1><sortorder>0</sortorder><team>9829</team><id>2927476</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>34</elapsed><player1>30714</player1><sortorder>0</sortorder><team>8686</team><id>1865115</id><n>20</n><type>goal</type><goal_type>p</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>78</elapsed><player1>30714</player1><sortorder>0</sortorder><team>8686</team><id>1865366</id><n>19</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>390</event_incident_typefk><coordinates><value>25</value><value>9</value></coordinates><elapsed>4</elapsed><player2>238841</player2><subtype>bicycle_kick</subtype><player1>213653</player1><sortorder>3</sortorder><team>9864</team><id>4871876</id><n>32</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>882</event_incident_typefk><coordinates><value>30</value><value>10</value></coordinates><elapsed>7</elapsed><player2>25563</player2><subtype>lob</subtype><player1>213653</player1><sortorder>5</sortorder><team>9864</team><id>4871919</id><n>56</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>25</value><value>64</value></coordinates><elapsed>14</elapsed><player2>99047</player2><subtype>header</subtype><player1>46289</player1><sortorder>3</sortorder><team>8560</team><id>4872002</id><n>79</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><coordinates><value>19</value><value>63</value></coordinates><elapsed>81</elapsed><subtype>shot</subtype><player1>46289</player1><sortorder>0</sortorder><team>8560</team><id>4872476</id><n>420</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>7</value></coordinates><elapsed>89</elapsed><player2>104382</player2><subtype>shot</subtype><player1>213653</player1><sortorder>4</sortorder><team>9864</team><id>4872519</id><n>487</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>15</elapsed><player1>184138</player1><sortorder>0</sortorder><team>8560</team><id>1279258</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>46</elapsed><player1>30728</player1><sortorder>0</sortorder><team>10278</team><id>1279673</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>51</elapsed><player1>42714</player1><sortorder>0</sortorder><team>10278</team><id>1279748</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>3</elapsed><subtype>direct_freekick</subtype><player1>32118</player1><sortorder>3</sortorder><team>8722</team><id>1408139</id><n>217</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>31</elapsed><subtype>shot</subtype><player1>38364</player1><sortorder>2</sortorder><team>9905</team><id>1408313</id><n>251</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>43</elapsed><subtype>loose_ball</subtype><player1>38848</player1><sortorder>1</sortorder><team>8722</team><id>1408417</id><n>265</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>55</elapsed><subtype>shot</subtype><player1>32118</player1><sortorder>4</sortorder><team>8722</team><id>1408659</id><n>281</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>60</elapsed><subtype>shot</subtype><player1>38848</player1><sortorder>3</sortorder><team>8722</team><id>1408713</id><n>289</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>89</elapsed><subtype>shot</subtype><player1>193202</player1><sortorder>2</sortorder><team>9905</team><id>1408939</id><n>323</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><elapsed>29</elapsed><player2>25075</player2><subtype>tap_in</subtype><player1>32627</player1><sortorder>1</sortorder><team>8472</team><id>2349796</id><n>190</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>71</elapsed><player2>246575</player2><subtype>volley</subtype><player1>40636</player1><sortorder>1</sortorder><team>8650</team><id>2350095</id><n>253</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>17</value><value>16</value></coordinates><elapsed>75</elapsed><subtype>distance</subtype><player1>264842</player1><sortorder>0</sortorder><team>8686</team><id>3784238</id><n>287</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>16</value><value>26</value></coordinates><elapsed>86</elapsed><player2>32746</player2><subtype>distance</subtype><player1>154249</player1><sortorder>1</sortorder><team>8686</team><id>3784372</id><n>296</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>10</elapsed><player2>37412</player2><subtype>shot</subtype><player1>38821</player1><sortorder>1</sortorder><team>9906</team><id>1020460</id><n>297</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>49</elapsed><player2>34029</player2><subtype>shot</subtype><player1>30889</player1><sortorder>3</sortorder><team>8633</team><id>1020656</id><n>239</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>55</elapsed><player2>30889</player2><subtype>shot</subtype><player1>37442</player1><sortorder>1</sortorder><team>8633</team><id>1020691</id><n>254</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>62</elapsed><subtype>shot</subtype><player1>25759</player1><sortorder>0</sortorder><team>8633</team><id>1020716</id><n>327</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>68</elapsed><player1>38460</player1><sortorder>0</sortorder><team>9906</team><id>1020738</id><n>275</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>7</elapsed><player1>242094</player1><sortorder>0</sortorder><team>8603</team><id>2550102</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>63</elapsed><player1>96652</player1><sortorder>0</sortorder><team>8603</team><id>2550119</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>2</elapsed><player1>145561</player1><sortorder>0</sortorder><team>9810</team><id>3110070</id><n>20</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>35</elapsed><player1>27478</player1><sortorder>0</sortorder><team>9810</team><id>3110318</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>82</elapsed><player1>298915</player1><sortorder>0</sortorder><team>8721</team><id>3110607</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><elapsed>54</elapsed><subtype>shot</subtype><player1>30893</player1><sortorder>0</sortorder><team>10260</team><id>528443</id><n>149</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>66</value></coordinates><elapsed>9</elapsed><player2>38393</player2><subtype>header</subtype><player1>73999</player1><sortorder>1</sortorder><team>8543</team><id>5431021</id><n>63</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>30</value><value>6</value></coordinates><elapsed>15</elapsed><player2>47041</player2><subtype>shot</subtype><player1>166648</player1><sortorder>1</sortorder><team>8564</team><id>5431067</id><n>101</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>8</value></coordinates><elapsed>4</elapsed><player2>208494</player2><subtype>shot</subtype><player1>191315</player1><sortorder>2</sortorder><team>8633</team><id>4971669</id><n>62</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>26</value><value>7</value></coordinates><elapsed>14</elapsed><player2>28467</player2><subtype>header</subtype><player1>30893</player1><sortorder>1</sortorder><team>8633</team><id>4971908</id><n>154</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>20</value><value>63</value></coordinates><elapsed>38</elapsed><player2>46621</player2><subtype>header</subtype><player1>243781</player1><sortorder>1</sortorder><team>8306</team><id>4972409</id><n>313</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>13</value><value>9</value></coordinates><elapsed>43</elapsed><player2>95078</player2><subtype>shot</subtype><player1>281085</player1><sortorder>1</sortorder><team>8633</team><id>4972527</id><n>344</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>23</elapsed><player1>39199</player1><sortorder>0</sortorder><team>9829</team><id>1457951</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>dg</comment><event_incident_typefk>289</event_incident_typefk><coordinates><value>18</value><value>64</value></coordinates><elapsed>32</elapsed><sortorder>1</sortorder><team>10269</team><id>3662421</id><n>65</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>16</value><value>65</value></coordinates><elapsed>51</elapsed><player2>27324</player2><subtype>volley</subtype><player1>298923</player1><sortorder>1</sortorder><team>10269</team><id>3662614</id><n>251</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><coordinates><value>22</value><value>8</value></coordinates><elapsed>67</elapsed><subtype>shot</subtype><player1>258245</player1><sortorder>1</sortorder><team>9788</team><id>3662726</id><n>136</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>28</value><value>8</value></coordinates><elapsed>90</elapsed><player2>114044</player2><subtype>shot</subtype><player1>269788</player1><sortorder>1</sortorder><team>9788</team><id>3662816</id><n>301</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>5</elapsed><subtype>shot</subtype><player1>25075</player1><sortorder>2</sortorder><team>8472</team><id>3045328</id><n>252</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>55</elapsed><player2>32569</player2><subtype>shot</subtype><player1>449241</player1><sortorder>1</sortorder><team>10260</team><id>3045782</id><n>319</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><elapsed>61</elapsed><subtype>volley</subtype><player1>449241</player1><sortorder>2</sortorder><team>10260</team><id>3045819</id><n>328</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>p</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>20</event_incident_typefk><elapsed>17</elapsed><player1>95257</player1><sortorder>0</sortorder><team>10199</team><id>5597757</id><n>14</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>37</elapsed><player1>304860</player1><sortorder>0</sortorder><team>10199</team><id>5597863</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>20</event_incident_typefk><elapsed>80</elapsed><player1>95257</player1><sortorder>0</sortorder><team>10199</team><id>5598601</id><n>42</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>23</value><value>3</value></coordinates><elapsed>39</elapsed><player2>248453</player2><subtype>tap_in</subtype><player1>75447</player1><sortorder>4</sortorder><team>9885</team><id>5521031</id><n>295</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>52</elapsed><player1>325916</player1><sortorder>1</sortorder><team>9885</team><id>5521923</id><n>361</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>7</value></coordinates><elapsed>64</elapsed><player2>42346</player2><subtype>shot</subtype><player1>325916</player1><sortorder>2</sortorder><team>9885</team><id>5522453</id><n>402</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>48</elapsed><subtype>shot</subtype><player1>33872</player1><sortorder>12</sortorder><team>8581</team><id>1398926</id><n>284</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>27</elapsed><player2>35454</player2><subtype>shot</subtype><player1>35411</player1><sortorder>2</sortorder><team>10261</team><id>1671153</id><n>308</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>30</elapsed><player2>24228</player2><subtype>header</subtype><player1>35411</player1><sortorder>5</sortorder><team>10261</team><id>1671209</id><n>262</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>37</elapsed><player2>25667</player2><subtype>shot</subtype><player1>113465</player1><sortorder>2</sortorder><team>8655</team><id>1671326</id><n>307</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>54</elapsed><player2>38373</player2><subtype>header</subtype><player1>35411</player1><sortorder>1</sortorder><team>10261</team><id>1671681</id><n>236</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>6</value></coordinates><elapsed>6</elapsed><player2>40007</player2><subtype>shot</subtype><player1>26374</player1><sortorder>1</sortorder><team>9747</team><id>5244787</id><n>60</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>15</value></coordinates><elapsed>46</elapsed><player2>26330</player2><subtype>shot</subtype><player1>103869</player1><sortorder>4</sortorder><team>9747</team><id>5245482</id><n>486</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>13</value></coordinates><elapsed>56</elapsed><player2>26330</player2><subtype>shot</subtype><player1>41364</player1><sortorder>3</sortorder><team>9747</team><id>5245634</id><n>544</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>28</value><value>3</value></coordinates><elapsed>90</elapsed><player2>26330</player2><subtype>tap_in</subtype><player1>693171</player1><sortorder>2</sortorder><team>9747</team><id>5246149</id><n>808</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>12</elapsed><player1>23837</player1><sortorder>0</sortorder><team>8655</team><id>1911455</id><n>204</n><type>goal</type><goal_type>o</goal_type></value><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><elapsed>44</elapsed><subtype>saved_back_into_play</subtype><player1>30342</player1><sortorder>0</sortorder><team>8655</team><id>1912051</id><n>89</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>36412</player2><subtype>shot</subtype><player1>39968</player1><sortorder>1</sortorder><team>10261</team><id>1913023</id><n>295</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>23</elapsed><player2>40825</player2><subtype>shot</subtype><player1>30679</player1><sortorder>14</sortorder><team>8455</team><id>1230315</id><n>227</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>81</elapsed><player2>30675</player2><subtype>shot</subtype><player1>31906</player1><sortorder>1</sortorder><team>8455</team><id>1231157</id><n>283</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>7</elapsed><player1>34082</player1><sortorder>0</sortorder><team>10199</team><id>5618991</id><n>7</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>20</event_incident_typefk><elapsed>11</elapsed><player1>95257</player1><sortorder>0</sortorder><team>10199</team><id>5619006</id><n>8</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>48</elapsed><player1>36382</player1><sortorder>0</sortorder><team>10199</team><id>5619373</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>60</elapsed><player1>570830</player1><sortorder>0</sortorder><team>10199</team><id>5619464</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>70</elapsed><player1>40707</player1><sortorder>0</sortorder><team>9827</team><id>1999833</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>33420</player1><sortorder>0</sortorder><team>8576</team><id>1999968</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>29</elapsed><player1>79982</player1><sortorder>0</sortorder><team>9904</team><id>3226516</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>35</elapsed><player1>30764</player1><sortorder>0</sortorder><team>8721</team><id>3226528</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>50</elapsed><player1>260470</player1><sortorder>0</sortorder><team>9904</team><id>3226584</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>72</elapsed><player1>260470</player1><sortorder>0</sortorder><team>9904</team><id>3226626</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>40</elapsed><player2>25594</player2><subtype>shot</subtype><player1>21446</player1><sortorder>2</sortorder><team>8543</team><id>1508690</id><n>288</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>46</elapsed><subtype>loose_ball</subtype><player1>182765</player1><sortorder>3</sortorder><team>8530</team><id>1508849</id><n>300</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>56</elapsed><player2>18506</player2><subtype>shot</subtype><player1>25594</player1><sortorder>2</sortorder><team>8543</team><id>1508983</id><n>313</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>78</elapsed><player2>18506</player2><subtype>shot</subtype><player1>27657</player1><sortorder>3</sortorder><team>8543</team><id>1509248</id><n>339</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>89</elapsed><subtype>direct_freekick</subtype><player1>18506</player1><sortorder>2</sortorder><team>8543</team><id>1509404</id><n>345</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>36</value><value>12</value></coordinates><elapsed>39</elapsed><player2>26107</player2><subtype>distance</subtype><player1>426202</player1><sortorder>1</sortorder><team>8639</team><id>3785161</id><n>246</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>29</elapsed><player1>40599</player1><sortorder>0</sortorder><team>10205</team><id>555386</id><n>13</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>33</elapsed><player1>38699</player1><sortorder>0</sortorder><team>10205</team><id>555407</id><n>14</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>32</elapsed><subtype>loose_ball</subtype><player1>33418</player1><sortorder>3</sortorder><team>8472</team><id>569158</id><n>321</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>69</elapsed><player1>24225</player1><sortorder>0</sortorder><team>10261</team><id>569451</id><n>369</n><type>goal</type><goal_type>p</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><elapsed>80</elapsed><subtype>shot</subtype><player1>47382</player1><sortorder>0</sortorder><team>10261</team><id>569513</id><n>203</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>4</elapsed><player1>93447</player1><sortorder>0</sortorder><team>9789</team><id>2484224</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>5</elapsed><player1>107281</player1><sortorder>0</sortorder><team>8357</team><id>2484226</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>15</elapsed><player1>93447</player1><sortorder>0</sortorder><team>9789</team><id>2484267</id><n>21</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>42</elapsed><player1>177714</player1><sortorder>0</sortorder><team>9789</team><id>2484413</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>18</elapsed><player1>19243</player1><sortorder>0</sortorder><team>9906</team><id>3017847</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>25</elapsed><player1>19243</player1><sortorder>0</sortorder><team>9906</team><id>3017863</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>42</elapsed><player1>37653</player1><sortorder>0</sortorder><team>8371</team><id>3017904</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>22</elapsed><player2>161415</player2><subtype>header</subtype><player1>161414</player1><sortorder>4</sortorder><team>10252</team><id>2323657</id><n>238</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>60</elapsed><subtype>shot</subtype><player1>26163</player1><sortorder>0</sortorder><team>10261</team><id>2324050</id><n>285</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>27</value><value>58</value></coordinates><elapsed>29</elapsed><subtype>direct_freekick</subtype><player1>215419</player1><sortorder>0</sortorder><team>8464</team><id>4983420</id><n>182</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>15</value><value>9</value></coordinates><elapsed>33</elapsed><player2>512747</player2><subtype>shot</subtype><player1>157101</player1><sortorder>1</sortorder><team>10229</team><id>4983495</id><n>277</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>25</value><value>61</value></coordinates><elapsed>34</elapsed><player2>179115</player2><subtype>volley</subtype><player1>288349</player1><sortorder>1</sortorder><team>8464</team><id>4983510</id><n>282</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>30</value><value>61</value></coordinates><elapsed>49</elapsed><player2>179115</player2><subtype>shot</subtype><player1>466832</player1><sortorder>2</sortorder><team>8464</team><id>4983986</id><n>311</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>64</value></coordinates><elapsed>57</elapsed><player2>288349</player2><subtype>shot</subtype><player1>215419</player1><sortorder>2</sortorder><team>8464</team><id>4984041</id><n>338</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><coordinates><value>25</value><value>4</value></coordinates><elapsed>66</elapsed><subtype>header</subtype><player1>157101</player1><sortorder>2</sortorder><team>10229</team><id>4984186</id><n>406</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player1>27478</player1><sortorder>0</sortorder><team>9810</team><id>618079</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>40</elapsed><player1>43210</player1><sortorder>0</sortorder><team>8178</team><id>618190</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>24443</player1><sortorder>0</sortorder><team>8533</team><id>450294</id><n>15</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>39190</player1><sortorder>0</sortorder><team>8524</team><id>450529</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>4</value></coordinates><elapsed>20</elapsed><player2>237631</player2><subtype>shot</subtype><player1>158297</player1><sortorder>2</sortorder><team>9853</team><id>4914168</id><n>205</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>30</value><value>12</value></coordinates><elapsed>70</elapsed><player2>237631</player2><subtype>distance</subtype><player1>40018</player1><sortorder>1</sortorder><team>9853</team><id>4915299</id><n>613</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>75</elapsed><player1>26195</player1><sortorder>0</sortorder><team>9827</team><id>2296934</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>10</elapsed><player2>161415</player2><subtype>shot</subtype><player1>110947</player1><sortorder>2</sortorder><team>10252</team><id>2038468</id><n>214</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>82</elapsed><player2>25984</player2><subtype>header</subtype><player1>40636</player1><sortorder>4</sortorder><team>8650</team><id>2039691</id><n>278</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>43</elapsed><player1>31199</player1><sortorder>0</sortorder><team>8178</team><id>2424619</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>58</elapsed><player1>36774</player1><sortorder>0</sortorder><team>9905</team><id>2425097</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>76</elapsed><player1>127945</player1><sortorder>0</sortorder><team>9905</team><id>2425226</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>87</elapsed><player1>27427</player1><sortorder>0</sortorder><team>8178</team><id>2425365</id><n>29</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>288</event_incident_typefk><elapsed>45</elapsed><subtype>deflected</subtype><player1>147951</player1><sortorder>4</sortorder><team>8540</team><id>1337584</id><n>197</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>54</elapsed><player1>41879</player1><sortorder>0</sortorder><team>9976</team><id>1337710</id><n>203</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><elapsed>29</elapsed><subtype>volley</subtype><player1>41413</player1><sortorder>1</sortorder><team>10167</team><id>1459305</id><n>291</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>52</elapsed><player2>18925</player2><subtype>shot</subtype><player1>41658</player1><sortorder>1</sortorder><team>9875</team><id>1459429</id><n>285</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>56</elapsed><player2>41658</player2><subtype>shot</subtype><player1>18925</player1><sortorder>1</sortorder><team>9875</team><id>1459437</id><n>258</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>87</elapsed><subtype>shot</subtype><player1>39535</player1><sortorder>0</sortorder><team>9875</team><id>1459562</id><n>317</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>73</elapsed><subtype>shot</subtype><player1>30373</player1><sortorder>3</sortorder><team>10260</team><id>982174</id><n>258</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>50</elapsed><player1>30284</player1><sortorder>0</sortorder><team>8551</team><id>581373</id><n>24</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>72</elapsed><player1>27734</player1><sortorder>0</sortorder><team>8600</team><id>581509</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>20</value><value>63</value></coordinates><elapsed>49</elapsed><player2>11329</player2><subtype>header</subtype><player1>46884</player1><sortorder>1</sortorder><team>9747</team><id>4253119</id><n>285</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>8</value></coordinates><elapsed>57</elapsed><player2>174062</player2><subtype>shot</subtype><player1>210406</player1><sortorder>4</sortorder><team>9831</team><id>4253209</id><n>348</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>395</event_incident_typefk><coordinates><value>19</value><value>64</value></coordinates><elapsed>61</elapsed><player2>40537</player2><player1>46884</player1><sortorder>1</sortorder><team>9747</team><id>4253250</id><n>369</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>4</elapsed><player2>46056</player2><player1>244458</player1><sortorder>0</sortorder><team>6413</team><id>4213053</id><n>13</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>33</elapsed><player2>157630</player2><player1>303059</player1><sortorder>0</sortorder><team>8277</team><id>4213266</id><n>14</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>45</elapsed><player1>150119</player1><sortorder>0</sortorder><team>8277</team><id>4213340</id><n>19</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>63</elapsed><player2>40662</player2><player1>178765</player1><sortorder>0</sortorder><team>8277</team><id>4213536</id><n>34</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>47</elapsed><player1>38136</player1><sortorder>0</sortorder><team>8371</team><id>945257</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>26</elapsed><player1>291635</player1><sortorder>0</sortorder><team>8661</team><id>2430489</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>29</elapsed><player1>75310</player1><sortorder>0</sortorder><team>8302</team><id>2430491</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>30</elapsed><player1>45204</player1><sortorder>0</sortorder><team>8661</team><id>2430493</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player1>75310</player1><sortorder>0</sortorder><team>8302</team><id>2430511</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>74</elapsed><player1>172430</player1><sortorder>0</sortorder><team>8302</team><id>2430515</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>5</value></coordinates><elapsed>23</elapsed><player2>26392</player2><subtype>shot</subtype><player1>111237</player1><sortorder>4</sortorder><team>8302</team><id>5399099</id><n>168</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>19</value><value>62</value></coordinates><elapsed>29</elapsed><subtype>shot</subtype><player1>201939</player1><sortorder>3</sortorder><team>10205</team><id>5399194</id><n>879</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>32</value><value>64</value></coordinates><elapsed>37</elapsed><player2>45744</player2><subtype>shot</subtype><player1>201939</player1><sortorder>4</sortorder><team>10205</team><id>5399346</id><n>300</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>19</value><value>4</value></coordinates><elapsed>52</elapsed><player1>182921</player1><sortorder>2</sortorder><team>10205</team><id>5399883</id><n>469</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>18</value><value>18</value></coordinates><elapsed>65</elapsed><player2>306407</player2><subtype>distance</subtype><player1>103450</player1><sortorder>3</sortorder><team>8302</team><id>5400102</id><n>669</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>80</event_incident_typefk><coordinates><value>28</value><value>7</value></coordinates><elapsed>90</elapsed><subtype>shot</subtype><player1>38821</player1><sortorder>4</sortorder><team>8302</team><id>5400513</id><n>837</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>20</value><value>4</value></coordinates><elapsed>22</elapsed><player1>159833</player1><sortorder>1</sortorder><team>8586</team><id>4652367</id><n>94</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><coordinates><value>20</value><value>67</value></coordinates><elapsed>2</elapsed><subtype>loose_ball</subtype><player1>169721</player1><sortorder>2</sortorder><team>8472</team><id>4390594</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>16</value><value>10</value></coordinates><elapsed>27</elapsed><player2>110148</player2><subtype>volley</subtype><player1>39109</player1><sortorder>0</sortorder><team>10194</team><id>4391292</id><n>171</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>7</value><value>16</value></coordinates><elapsed>10</elapsed><subtype>direct_freekick</subtype><player1>94086</player1><sortorder>0</sortorder><team>8455</team><id>4868674</id><n>76</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>26</value><value>57</value></coordinates><elapsed>44</elapsed><player2>41280</player2><subtype>volley</subtype><player1>23792</player1><sortorder>1</sortorder><team>8466</team><id>4869077</id><n>244</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>61</value></coordinates><elapsed>60</elapsed><player2>41280</player2><subtype>shot</subtype><player1>303339</player1><sortorder>1</sortorder><team>8466</team><id>4869546</id><n>350</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>14</value><value>61</value></coordinates><elapsed>73</elapsed><player2>303339</player2><subtype>shot</subtype><player1>41280</player1><sortorder>1</sortorder><team>8466</team><id>4869787</id><n>424</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>20</value><value>3</value></coordinates><elapsed>10</elapsed><player2>264842</player2><subtype>tap_in</subtype><player1>154249</player1><sortorder>4</sortorder><team>8686</team><id>3753162</id><n>218</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>32</value><value>7</value></coordinates><elapsed>13</elapsed><player2>37950</player2><subtype>shot</subtype><player1>264842</player1><sortorder>3</sortorder><team>8686</team><id>3753226</id><n>238</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>21</elapsed><player2>36186</player2><player1>72735</player1><sortorder>0</sortorder><team>9904</team><id>3296517</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player2>26982</player2><player1>26660</player1><sortorder>0</sortorder><team>8406</team><id>3296967</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>5</elapsed><player1>30915</player1><sortorder>0</sortorder><team>8226</team><id>1613510</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>58</elapsed><player1>95094</player1><sortorder>0</sortorder><team>8406</team><id>1613922</id><n>4</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>75</elapsed><player1>36011</player1><sortorder>0</sortorder><team>8226</team><id>1614182</id><n>20</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>32</elapsed><player1>184138</player1><sortorder>0</sortorder><team>8560</team><id>1509820</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>69</elapsed><player1>38886</player1><sortorder>0</sortorder><team>9869</team><id>1510328</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player1>184138</player1><sortorder>0</sortorder><team>8560</team><id>1510469</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>20</value><value>64</value></coordinates><elapsed>42</elapsed><subtype>shot</subtype><player1>282770</player1><sortorder>2</sortorder><team>8636</team><id>4800036</id><n>227</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>527103</player1><sortorder>0</sortorder><team>9931</team><id>5519186</id><n>10</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player1>527103</player1><sortorder>0</sortorder><team>9931</team><id>5519873</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>402975</player1><sortorder>0</sortorder><team>9931</team><id>5521439</id><n>43</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>22</value><value>67</value></coordinates><elapsed>24</elapsed><player2>36121</player2><subtype>header</subtype><player1>42437</player1><sortorder>1</sortorder><team>8533</team><id>5426848</id><n>219</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>159</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>30</elapsed><subtype>saved</subtype><player1>36121</player1><sortorder>1</sortorder><team>8533</team><id>5426961</id><n>343</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>62</value></coordinates><elapsed>20</elapsed><player2>96652</player2><subtype>shot</subtype><player1>27461</player1><sortorder>4</sortorder><team>8603</team><id>4873435</id><n>529</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>62</value></coordinates><elapsed>61</elapsed><player2>183350</player2><subtype>shot</subtype><player1>96652</player1><sortorder>1</sortorder><team>8603</team><id>4873842</id><n>357</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>26</elapsed><player2>254702</player2><subtype>header</subtype><player1>186121</player1><sortorder>11</sortorder><team>8558</team><id>1890264</id><n>251</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>20</event_incident_typefk><elapsed>45</elapsed><player1>37441</player1><sortorder>1</sortorder><team>8558</team><id>1890471</id><n>275</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>80</elapsed><subtype>loose_ball</subtype><player1>159598</player1><sortorder>4</sortorder><team>8558</team><id>1890863</id><n>318</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>52</elapsed><player1>30893</player1><sortorder>0</sortorder><team>8633</team><id>4222212</id><n>375</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>24</value><value>59</value></coordinates><elapsed>64</elapsed><subtype>shot</subtype><player1>246438</player1><sortorder>3</sortorder><team>10205</team><id>4222321</id><n>455</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>12</elapsed><player1>102699</player1><sortorder>0</sortorder><team>9873</team><id>2457047</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>27</elapsed><player1>41240</player1><sortorder>0</sortorder><team>9873</team><id>2457076</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>60</elapsed><player1>41240</player1><sortorder>0</sortorder><team>9873</team><id>2457135</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>33446</player1><sortorder>0</sortorder><team>9874</team><id>2457138</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>889</event_incident_typefk><coordinates><value>25</value><value>3</value></coordinates><elapsed>6</elapsed><player2>36378</player2><subtype>backheel</subtype><player1>50047</player1><sortorder>4</sortorder><team>9825</team><id>4877258</id><n>58</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>9</value></coordinates><elapsed>7</elapsed><player2>31013</player2><subtype>shot</subtype><player1>36378</player1><sortorder>1</sortorder><team>9825</team><id>4877289</id><n>79</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>11</value></coordinates><elapsed>19</elapsed><player2>31013</player2><subtype>shot</subtype><player1>50047</player1><sortorder>3</sortorder><team>9825</team><id>4877569</id><n>561</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>64</value></coordinates><elapsed>41</elapsed><player2>263276</player2><subtype>shot</subtype><player1>38253</player1><sortorder>1</sortorder><team>9830</team><id>5231168</id><n>303</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>10</elapsed><player1>199834</player1><sortorder>0</sortorder><team>10249</team><id>3029617</id><n>22</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>36</elapsed><player1>40022</player1><sortorder>0</sortorder><team>8576</team><id>3029821</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>19</elapsed><player2>39854</player2><subtype>shot</subtype><player1>30981</player1><sortorder>0</sortorder><team>8634</team><id>1069584</id><n>176</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>34</elapsed><subtype>direct_freekick</subtype><player1>39854</player1><sortorder>0</sortorder><team>8634</team><id>1069632</id><n>235</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>42</elapsed><player2>39854</player2><subtype>shot</subtype><player1>96643</player1><sortorder>0</sortorder><team>8634</team><id>1069648</id><n>207</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>67</elapsed><player2>25986</player2><subtype>shot</subtype><player1>38551</player1><sortorder>1</sortorder><team>10205</team><id>1069701</id><n>215</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>88</elapsed><player2>33988</player2><subtype>shot</subtype><player1>30981</player1><sortorder>1</sortorder><team>8634</team><id>1069738</id><n>220</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>10</elapsed><player1>95094</player1><sortorder>0</sortorder><team>8406</team><id>2518675</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>69</elapsed><player1>177715</player1><sortorder>0</sortorder><team>8357</team><id>2519217</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>64</value></coordinates><elapsed>63</elapsed><player2>113836</player2><subtype>shot</subtype><player1>50047</player1><sortorder>2</sortorder><team>9825</team><id>3934221</id><n>200</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>21</value><value>16</value></coordinates><elapsed>75</elapsed><subtype>direct_freekick</subtype><player1>157729</player1><sortorder>0</sortorder><team>10003</team><id>3934415</id><n>244</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>23</value><value>7</value></coordinates><elapsed>78</elapsed><player2>52563</player2><subtype>header</subtype><player1>26344</player1><sortorder>1</sortorder><team>10003</team><id>3934482</id><n>252</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>81</elapsed><player1>2983</player1><sortorder>0</sortorder><team>8603</team><id>2521612</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>43</elapsed><player1>30709</player1><sortorder>1</sortorder><team>9876</team><id>5592589</id><n>268</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>28</value><value>10</value></coordinates><elapsed>55</elapsed><player2>168727</player2><subtype>shot</subtype><player1>251384</player1><sortorder>4</sortorder><team>9876</team><id>5592666</id><n>348</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><elapsed_plus>5</elapsed_plus><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>90</elapsed><player1>325916</player1><sortorder>16</sortorder><team>9885</team><id>5592861</id><n>589</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>20</value><value>58</value></coordinates><elapsed>2</elapsed><subtype>shot</subtype><player1>57123</player1><sortorder>1</sortorder><team>8533</team><id>5364830</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>6</value></coordinates><elapsed>6</elapsed><player2>187017</player2><subtype>shot</subtype><player1>25759</player1><sortorder>1</sortorder><team>9875</team><id>5364864</id><n>45</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>26</value><value>4</value></coordinates><elapsed>38</elapsed><player2>282775</player2><subtype>header</subtype><player1>177837</player1><sortorder>2</sortorder><team>9875</team><id>5365385</id><n>240</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>5</value></coordinates><elapsed>70</elapsed><player2>188652</player2><subtype>shot</subtype><player1>150330</player1><sortorder>1</sortorder><team>9875</team><id>5365958</id><n>415</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>58</elapsed><subtype>shot</subtype><player1>179772</player1><sortorder>2</sortorder><team>8315</team><id>871193</id><n>315</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>61</elapsed><player2>2802</player2><subtype>shot</subtype><player1>30909</player1><sortorder>2</sortorder><team>10267</team><id>871211</id><n>302</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>83</elapsed><subtype>shot</subtype><player1>26403</player1><sortorder>2</sortorder><team>10267</team><id>871315</id><n>310</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>23</event_incident_typefk><elapsed>87</elapsed><subtype>post</subtype><player1>33866</player1><sortorder>2</sortorder><team>8315</team><id>871322</id><n>204</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>dg</comment><event_incident_typefk>299</event_incident_typefk><coordinates><value>27</value><value>63</value></coordinates><elapsed>16</elapsed><subtype>header</subtype><player1>129391</player1><sortorder>0</sortorder><team>9847</team><id>4794098</id><n>93</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>10</value></coordinates><elapsed>83</elapsed><player2>181197</player2><subtype>shot</subtype><player1>613714</player1><sortorder>1</sortorder><team>9837</team><id>4794954</id><n>457</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>22</value><value>62</value></coordinates><elapsed>84</elapsed><player2>129391</player2><subtype>volley</subtype><player1>49677</player1><sortorder>1</sortorder><team>9847</team><id>4794972</id><n>463</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>5</elapsed><player2>78324</player2><subtype>shot</subtype><player1>148315</player1><sortorder>2</sortorder><team>10252</team><id>3340331</id><n>189</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>22</elapsed><player2>30830</player2><subtype>shot</subtype><player1>25550</player1><sortorder>2</sortorder><team>10194</team><id>3340521</id><n>208</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>26</elapsed><player2>37194</player2><subtype>shot</subtype><player1>30830</player1><sortorder>1</sortorder><team>10194</team><id>3340554</id><n>210</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>42</elapsed><subtype>distance</subtype><player1>109621</player1><sortorder>3</sortorder><team>10194</team><id>3340688</id><n>222</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>110148</player2><subtype>shot</subtype><player1>119541</player1><sortorder>2</sortorder><team>10194</team><id>3341321</id><n>272</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>4</elapsed><player1>75342</player1><sortorder>0</sortorder><team>8560</team><id>2753060</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>18</elapsed><player1>75192</player1><sortorder>0</sortorder><team>8305</team><id>2753089</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>39</elapsed><player1>167027</player1><sortorder>0</sortorder><team>8305</team><id>2753137</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>59</elapsed><player1>31498</player1><sortorder>0</sortorder><team>8661</team><id>643396</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>56686</player1><sortorder>0</sortorder><team>8661</team><id>643781</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>36</elapsed><player2>56686</player2><subtype>shot</subtype><player1>200630</player1><sortorder>0</sortorder><team>8661</team><id>1291260</id><n>315</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>88</elapsed><player2>30443</player2><subtype>shot</subtype><player1>34106</player1><sortorder>0</sortorder><team>8302</team><id>1291498</id><n>360</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>90</elapsed><player2>24123</player2><subtype>header</subtype><player1>25574</player1><sortorder>1</sortorder><team>8661</team><id>1291503</id><n>358</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>16</elapsed><subtype>shot</subtype><player1>40636</player1><sortorder>2</sortorder><team>8650</team><id>3298052</id><n>186</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>58</elapsed><player2>40636</player2><subtype>shot</subtype><player1>246575</player1><sortorder>2</sortorder><team>8650</team><id>3298308</id><n>226</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><elapsed_plus>5</elapsed_plus><event_incident_typefk>20</event_incident_typefk><elapsed>90</elapsed><player1>30618</player1><sortorder>10</sortorder><team>8650</team><id>3298430</id><n>256</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>10</elapsed><player1>37429</player1><sortorder>0</sortorder><team>9847</team><id>1531548</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>23</elapsed><player1>26155</player1><sortorder>0</sortorder><team>9847</team><id>1531607</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>41240</player1><sortorder>0</sortorder><team>9873</team><id>1531696</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>88</elapsed><player1>94043</player1><sortorder>0</sortorder><team>9847</team><id>1531986</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>11</value><value>8</value></coordinates><elapsed>46</elapsed><player2>41658</player2><subtype>shot</subtype><player1>193441</player1><sortorder>3</sortorder><team>9875</team><id>4921101</id><n>351</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>62</value></coordinates><elapsed>73</elapsed><player2>147951</player2><subtype>shot</subtype><player1>21613</player1><sortorder>1</sortorder><team>8535</team><id>4921831</id><n>598</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>8</value></coordinates><elapsed>75</elapsed><player2>46104</player2><subtype>shot</subtype><player1>25759</player1><sortorder>5</sortorder><team>9875</team><id>4921918</id><n>633</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>44</elapsed><player2>30682</player2><subtype>shot</subtype><player1>40165</player1><sortorder>4</sortorder><team>8686</team><id>2013194</id><n>277</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>53</elapsed><player1>35724</player1><sortorder>0</sortorder><team>8564</team><id>2013481</id><n>290</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><elapsed>83</elapsed><subtype>header</subtype><player1>35724</player1><sortorder>3</sortorder><team>8564</team><id>2013805</id><n>324</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>44</value><value>54</value></coordinates><elapsed>81</elapsed><player2>45413</player2><subtype>header</subtype><player1>109121</player1><sortorder>1</sortorder><team>8533</team><id>4028078</id><n>278</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>74</elapsed><subtype>shot</subtype><player1>32764</player1><sortorder>2</sortorder><team>8560</team><id>1409569</id><n>553</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>15</elapsed><player1>150330</player1><sortorder>0</sortorder><team>9875</team><id>3110693</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>20</elapsed><player1>41658</player1><sortorder>0</sortorder><team>9875</team><id>3110701</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>25</elapsed><player1>166509</player1><sortorder>0</sortorder><team>8530</team><id>3110709</id><n>15</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>21</elapsed><player2>43259</player2><subtype>shot</subtype><player1>40015</player1><sortorder>0</sortorder><team>8654</team><id>2401192</id><n>184</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><elapsed>41</elapsed><player2>32118</player2><subtype>tap_in</subtype><player1>46469</player1><sortorder>1</sortorder><team>9825</team><id>2401254</id><n>205</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>77</elapsed><player2>46469</player2><subtype>shot</subtype><player1>31013</player1><sortorder>0</sortorder><team>9825</team><id>2401436</id><n>238</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>83</elapsed><player2>31013</player2><subtype>shot</subtype><player1>37436</player1><sortorder>0</sortorder><team>9825</team><id>2401451</id><n>245</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>15</value><value>68</value></coordinates><elapsed>85</elapsed><player2>364520</player2><subtype>shot</subtype><player1>415539</player1><sortorder>3</sortorder><team>7943</team><id>5588775</id><n>480</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>34</elapsed><player2>96540</player2><subtype>shot</subtype><player1>30712</player1><sortorder>0</sortorder><team>9885</team><id>620229</id><n>280</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>48</elapsed><player2>33782</player2><subtype>shot</subtype><player1>39206</player1><sortorder>1</sortorder><team>8686</team><id>620345</id><n>301</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>55</elapsed><player2>30861</player2><subtype>header</subtype><player1>30712</player1><sortorder>1</sortorder><team>9885</team><id>620373</id><n>307</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>68</elapsed><player2>30727</player2><subtype>header</subtype><player1>30736</player1><sortorder>3</sortorder><team>9885</team><id>620434</id><n>318</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>74</elapsed><subtype>distance</subtype><player1>30725</player1><sortorder>2</sortorder><team>9885</team><id>620451</id><n>342</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>30</elapsed><player1>41658</player1><sortorder>0</sortorder><team>9875</team><id>2405205</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>43</elapsed><player1>27731</player1><sortorder>0</sortorder><team>8600</team><id>2405218</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>25597</player1><sortorder>0</sortorder><team>9875</team><id>2405226</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>6</elapsed><player1>40707</player1><sortorder>0</sortorder><team>9827</team><id>1559637</id><n>14</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>28</elapsed><player2>58346</player2><subtype>header</subtype><player1>37359</player1><sortorder>3</sortorder><team>8152</team><id>1290325</id><n>419</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>54</elapsed><player2>31235</player2><subtype>shot</subtype><player1>15403</player1><sortorder>6</sortorder><team>8721</team><id>1290759</id><n>464</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>36</elapsed><player1>38364</player1><sortorder>0</sortorder><team>9905</team><id>1998434</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>43</elapsed><player1>201888</player1><sortorder>0</sortorder><team>8406</team><id>1998476</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>51</elapsed><player1>95081</player1><sortorder>0</sortorder><team>8406</team><id>1998577</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player1>39644</player1><sortorder>0</sortorder><team>8551</team><id>2053881</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>42</elapsed><player1>30549</player1><sortorder>0</sortorder><team>8636</team><id>2054594</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>81</elapsed><player1>30549</player1><sortorder>0</sortorder><team>8636</team><id>2055226</id><n>23</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>10</elapsed><player1>46662</player1><sortorder>0</sortorder><team>7819</team><id>1406519</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>49</elapsed><player1>71605</player1><sortorder>0</sortorder><team>9827</team><id>1407115</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>179845</player1><sortorder>0</sortorder><team>7819</team><id>1407258</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>1</elapsed><player1>129944</player1><sortorder>0</sortorder><team>9789</team><id>2710912</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>87</elapsed><player1>93447</player1><sortorder>0</sortorder><team>9789</team><id>2712397</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>29</value><value>7</value></coordinates><elapsed>30</elapsed><player2>23354</player2><subtype>volley</subtype><player1>164676</player1><sortorder>1</sortorder><team>10260</team><id>4489606</id><n>109</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>18</value><value>66</value></coordinates><elapsed>82</elapsed><player1>501040</player1><sortorder>1</sortorder><team>10260</team><id>4490040</id><n>360</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>dg</comment><event_incident_typefk>299</event_incident_typefk><elapsed>18</elapsed><subtype>header</subtype><player1>75216</player1><sortorder>3</sortorder><team>8388</team><id>560034</id><n>55</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>49</elapsed><player2>33988</player2><subtype>shot</subtype><player1>30981</player1><sortorder>5</sortorder><team>8634</team><id>560142</id><n>313</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>53</elapsed><player2>30955</player2><subtype>shot</subtype><player1>33639</player1><sortorder>2</sortorder><team>8634</team><id>560152</id><n>317</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>61</elapsed><subtype>direct_freekick</subtype><player1>38550</player1><sortorder>0</sortorder><team>8388</team><id>560166</id><n>327</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>71</elapsed><player2>30981</player2><subtype>shot</subtype><player1>30626</player1><sortorder>2</sortorder><team>8634</team><id>560191</id><n>338</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>76</elapsed><subtype>shot</subtype><player1>30981</player1><sortorder>5</sortorder><team>8634</team><id>560198</id><n>342</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>7</elapsed><player1>37558</player1><sortorder>0</sortorder><team>8398</team><id>457145</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>15</elapsed><player1>37558</player1><sortorder>0</sortorder><team>8398</team><id>457161</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>39</elapsed><player1>36060</player1><sortorder>0</sortorder><team>9810</team><id>457258</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>68</elapsed><player1>69864</player1><sortorder>0</sortorder><team>9810</team><id>457438</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>74</elapsed><player1>37760</player1><sortorder>0</sortorder><team>9810</team><id>457465</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>19</elapsed><player1>164684</player1><sortorder>0</sortorder><team>9829</team><id>3155862</id><n>15</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>413557</player1><sortorder>0</sortorder><team>9829</team><id>3156220</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>58</elapsed><player2>111800</player2><subtype>shot</subtype><player1>30348</player1><sortorder>1</sortorder><team>8586</team><id>2526883</id><n>262</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>61</elapsed><subtype>shot</subtype><player1>31921</player1><sortorder>3</sortorder><team>8586</team><id>2526893</id><n>266</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>73</elapsed><player2>30895</player2><subtype>shot</subtype><player1>31921</player1><sortorder>2</sortorder><team>8586</team><id>2526912</id><n>274</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>84</elapsed><player2>157729</player2><subtype>shot</subtype><player1>31921</player1><sortorder>2</sortorder><team>8586</team><id>2526925</id><n>281</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>56</elapsed><player2>39854</player2><subtype>shot</subtype><player1>30981</player1><sortorder>0</sortorder><team>8634</team><id>997558</id><n>187</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><elapsed>67</elapsed><subtype>shot</subtype><player1>34304</player1><sortorder>0</sortorder><team>8634</team><id>997577</id><n>98</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>81</elapsed><player2>30626</player2><subtype>shot</subtype><player1>30981</player1><sortorder>0</sortorder><team>8634</team><id>997611</id><n>212</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>82</elapsed><player2>30626</player2><subtype>shot</subtype><player1>30981</player1><sortorder>0</sortorder><team>8634</team><id>997612</id><n>213</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>58</elapsed><player1>32749</player1><sortorder>0</sortorder><team>9857</team><id>1278472</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>13</elapsed><player1>37441</player1><sortorder>0</sortorder><team>8558</team><id>903766</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>40</elapsed><player1>33762</player1><sortorder>0</sortorder><team>8394</team><id>903834</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>71</elapsed><player1>80492</player1><sortorder>0</sortorder><team>8558</team><id>903919</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>12</elapsed><player1>212867</player1><sortorder>0</sortorder><team>9790</team><id>2059034</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>12</elapsed><player2>30700</player2><subtype>header</subtype><player1>24006</player1><sortorder>2</sortorder><team>8668</team><id>901470</id><n>229</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>28</elapsed><player1>24006</player1><sortorder>0</sortorder><team>8668</team><id>901499</id><n>242</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>81</elapsed><player2>30876</player2><subtype>shot</subtype><player1>36012</player1><sortorder>0</sortorder><team>8668</team><id>901616</id><n>295</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>27277</player2><subtype>shot</subtype><player1>31435</player1><sortorder>5</sortorder><team>9825</team><id>901649</id><n>313</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>27</elapsed><player2>37408</player2><subtype>header</subtype><player1>150832</player1><sortorder>3</sortorder><team>8315</team><id>985564</id><n>253</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>36</elapsed><player2>33030</player2><subtype>shot</subtype><player1>150832</player1><sortorder>8</sortorder><team>8315</team><id>985614</id><n>258</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>299</event_incident_typefk><elapsed>53</elapsed><subtype>header</subtype><player1>33030</player1><sortorder>3</sortorder><team>8315</team><id>985733</id><n>123</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><coordinates><value>29</value><value>4</value></coordinates><elapsed>51</elapsed><subtype>volley</subtype><player1>30853</player1><sortorder>3</sortorder><team>9906</team><id>5607462</id><n>505</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><coordinates><value>22</value><value>6</value></coordinates><elapsed>54</elapsed><subtype>header</subtype><player1>184138</player1><sortorder>5</sortorder><team>9906</team><id>5607473</id><n>287</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>39</elapsed><player2>38834</player2><subtype>volley</subtype><player1>30822</player1><sortorder>3</sortorder><team>8455</team><id>1206500</id><n>305</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>85</elapsed><subtype>direct_freekick</subtype><player1>26564</player1><sortorder>0</sortorder><team>8455</team><id>1207138</id><n>368</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>13</value></coordinates><elapsed>75</elapsed><player2>42437</player2><subtype>shot</subtype><player1>166509</player1><sortorder>2</sortorder><team>8533</team><id>4822949</id><n>427</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>13</elapsed><player1>39106</player1><sortorder>0</sortorder><team>9790</team><id>819981</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>39</elapsed><player1>129944</player1><sortorder>0</sortorder><team>9788</team><id>820225</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>47</elapsed><player1>38843</player1><sortorder>0</sortorder><team>9790</team><id>820686</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>76</elapsed><player1>38432</player1><sortorder>0</sortorder><team>9788</team><id>820929</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>82</elapsed><player1>31936</player1><sortorder>0</sortorder><team>9788</team><id>821051</id><n>29</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>61</value></coordinates><elapsed>71</elapsed><player2>127460</player2><subtype>shot</subtype><player1>166648</player1><sortorder>2</sortorder><team>8564</team><id>5511229</id><n>347</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>18</elapsed><player2>25526</player2><subtype>shot</subtype><player1>33639</player1><sortorder>3</sortorder><team>8636</team><id>1452365</id><n>246</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><elapsed>85</elapsed><subtype>header</subtype><player1>27664</player1><sortorder>0</sortorder><team>9858</team><id>1452610</id><n>308</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>159</event_incident_typefk><elapsed>90</elapsed><subtype>saved</subtype><player1>27664</player1><sortorder>1</sortorder><team>9858</team><id>1452623</id><n>199</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>9</elapsed><player1>20694</player1><sortorder>0</sortorder><team>10269</team><id>1635688</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player1>25772</player1><sortorder>0</sortorder><team>10269</team><id>1636893</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>86</elapsed><player1>36146</player1><sortorder>0</sortorder><team>10269</team><id>1636894</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>24</elapsed><subtype>loose_ball</subtype><player1>32747</player1><sortorder>1</sortorder><team>8540</team><id>436260</id><n>202</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>39</elapsed><subtype>direct_freekick</subtype><player1>30727</player1><sortorder>0</sortorder><team>9885</team><id>436380</id><n>216</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>81</elapsed><player2>33337</player2><subtype>shot</subtype><player1>104434</player1><sortorder>1</sortorder><team>8540</team><id>437389</id><n>255</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>17</elapsed><subtype>distance</subtype><player1>30981</player1><sortorder>1</sortorder><team>8634</team><id>1399235</id><n>197</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>29</elapsed><player2>30909</player2><subtype>shot</subtype><player1>30981</player1><sortorder>1</sortorder><team>8634</team><id>1399288</id><n>217</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>79</elapsed><player2>30909</player2><subtype>shot</subtype><player1>30981</player1><sortorder>2</sortorder><team>8634</team><id>1399404</id><n>266</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>25</value><value>62</value></coordinates><elapsed>50</elapsed><player2>155782</player2><subtype>header</subtype><player1>192899</player1><sortorder>1</sortorder><team>8654</team><id>3844287</id><n>319</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>27</value><value>63</value></coordinates><elapsed>54</elapsed><player2>214685</player2><subtype>header</subtype><player1>195927</player1><sortorder>1</sortorder><team>8654</team><id>3844418</id><n>320</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>23</value><value>6</value></coordinates><elapsed>60</elapsed><subtype>shot</subtype><player1>32304</player1><sortorder>4</sortorder><team>8191</team><id>3844615</id><n>326</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>26</value><value>64</value></coordinates><elapsed>70</elapsed><player2>192899</player2><subtype>header</subtype><player1>34543</player1><sortorder>4</sortorder><team>8654</team><id>3844886</id><n>336</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>6</value></coordinates><elapsed>36</elapsed><player2>110161</player2><subtype>shot</subtype><player1>188557</player1><sortorder>2</sortorder><team>10235</team><id>5371765</id><n>281</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>649</event_incident_typefk><coordinates><value>25</value><value>69</value></coordinates><elapsed>70</elapsed><subtype>tap_in</subtype><player1>46203</player1><sortorder>3</sortorder><team>7788</team><id>5372380</id><n>501</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><coordinates><value>25</value><value>5</value></coordinates><elapsed>79</elapsed><subtype>header</subtype><player1>37139</player1><sortorder>7</sortorder><team>10235</team><id>5372541</id><n>565</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>6</value></coordinates><elapsed>85</elapsed><player2>503629</player2><subtype>shot</subtype><player1>26675</player1><sortorder>4</sortorder><team>10235</team><id>5372655</id><n>627</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>27</value><value>63</value></coordinates><elapsed>14</elapsed><player2>16351</player2><subtype>header</subtype><player1>37412</player1><sortorder>2</sortorder><team>8456</team><id>5515636</id><n>114</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>33</value><value>8</value></coordinates><elapsed>31</elapsed><player2>94550</player2><subtype>shot</subtype><player1>109652</player1><sortorder>1</sortorder><team>10261</team><id>5515883</id><n>210</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>11</elapsed><player2>103904</player2><subtype>shot</subtype><player1>25574</player1><sortorder>2</sortorder><team>8661</team><id>1411045</id><n>329</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>7</value></coordinates><elapsed>10</elapsed><player2>178812</player2><subtype>shot</subtype><player1>104045</player1><sortorder>2</sortorder><team>8721</team><id>4193966</id><n>215</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>20</value><value>65</value></coordinates><elapsed>30</elapsed><player2>91984</player2><subtype>header</subtype><player1>141161</player1><sortorder>1</sortorder><team>8177</team><id>4194162</id><n>139</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>21</value><value>7</value></coordinates><elapsed>74</elapsed><subtype>shot</subtype><player1>104045</player1><sortorder>3</sortorder><team>8721</team><id>4195115</id><n>378</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>7</elapsed><player1>363359</player1><sortorder>0</sortorder><team>10242</team><id>2642119</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player1>40657</player1><sortorder>0</sortorder><team>10242</team><id>2642296</id><n>31</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>65</elapsed><player1>181197</player1><sortorder>0</sortorder><team>9837</team><id>2642327</id><n>37</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>70</elapsed><player1>363359</player1><sortorder>0</sortorder><team>10242</team><id>2642333</id><n>32</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>77</elapsed><player1>140982</player1><sortorder>0</sortorder><team>9837</team><id>2642354</id><n>33</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>303334</player1><sortorder>0</sortorder><team>10242</team><id>2642407</id><n>35</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>79</elapsed><subtype>shot</subtype><player1>37471</player1><sortorder>1</sortorder><team>8305</team><id>848667</id><n>183</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>406</event_incident_typefk><elapsed>90</elapsed><player2>37474</player2><subtype>header</subtype><player1>75619</player1><sortorder>1</sortorder><team>8305</team><id>848747</id><n>191</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>30</value><value>8</value></coordinates><elapsed>32</elapsed><player2>26419</player2><subtype>shot</subtype><player1>35724</player1><sortorder>3</sortorder><team>9847</team><id>5208219</id><n>213</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>6</value></coordinates><elapsed>40</elapsed><player2>109651</player2><subtype>shot</subtype><player1>215299</player1><sortorder>2</sortorder><team>9847</team><id>5208358</id><n>302</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>5</value></coordinates><elapsed>54</elapsed><player2>26419</player2><subtype>shot</subtype><player1>109651</player1><sortorder>1</sortorder><team>9847</team><id>5208653</id><n>367</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>21</value><value>57</value></coordinates><elapsed>59</elapsed><subtype>shot</subtype><player1>310836</player1><sortorder>2</sortorder><team>8121</team><id>5208693</id><n>407</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>20</value><value>15</value></coordinates><elapsed>63</elapsed><player2>215299</player2><subtype>volley</subtype><player1>46509</player1><sortorder>0</sortorder><team>9847</team><id>5208725</id><n>428</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>9</value></coordinates><elapsed>66</elapsed><player2>26419</player2><subtype>shot</subtype><player1>46509</player1><sortorder>1</sortorder><team>9847</team><id>5208745</id><n>457</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>12</elapsed><player1>191136</player1><sortorder>0</sortorder><team>8315</team><id>2486139</id><n>30</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>30</elapsed><player1>30962</player1><sortorder>0</sortorder><team>8633</team><id>2486145</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>32</elapsed><player1>26166</player1><sortorder>0</sortorder><team>8633</team><id>2486150</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>42</elapsed><player1>213470</player1><sortorder>0</sortorder><team>8315</team><id>2486153</id><n>31</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player1>36378</player1><sortorder>0</sortorder><team>8633</team><id>2486159</id><n>33</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>72</elapsed><player1>42346</player1><sortorder>0</sortorder><team>8633</team><id>2486163</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>28</value><value>12</value></coordinates><elapsed>74</elapsed><player2>79982</player2><subtype>shot</subtype><player1>107281</player1><sortorder>2</sortorder><team>9790</team><id>4193428</id><n>337</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>406</event_incident_typefk><coordinates><value>25</value><value>61</value></coordinates><elapsed>90</elapsed><player2>58346</player2><subtype>header</subtype><player1>258245</player1><sortorder>8</sortorder><team>9788</team><id>4193699</id><n>427</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>23</elapsed><player1>39141</player1><sortorder>0</sortorder><team>9790</team><id>950969</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player1>27774</player1><sortorder>0</sortorder><team>10269</team><id>951227</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>75</elapsed><player1>34602</player1><sortorder>0</sortorder><team>9790</team><id>951315</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>77</elapsed><player1>34602</player1><sortorder>0</sortorder><team>9790</team><id>951322</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>2</elapsed><player1>150754</player1><sortorder>0</sortorder><team>7878</team><id>2053399</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>39</elapsed><player1>33030</player1><sortorder>0</sortorder><team>8315</team><id>2053880</id><n>6</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>74</elapsed><player1>33840</player1><sortorder>0</sortorder><team>7878</team><id>2054584</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>81</elapsed><player1>33030</player1><sortorder>0</sortorder><team>8315</team><id>2054585</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>87</elapsed><player1>96619</player1><sortorder>0</sortorder><team>8315</team><id>2054696</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>4</elapsed><player2>41892</player2><subtype>shot</subtype><player1>49939</player1><sortorder>2</sortorder><team>9885</team><id>2081205</id><n>135</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>8</elapsed><player2>38717</player2><subtype>distance</subtype><player1>49939</player1><sortorder>1</sortorder><team>9885</team><id>2081212</id><n>137</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><elapsed>29</elapsed><subtype>saved_back_into_play</subtype><player1>30731</player1><sortorder>0</sortorder><team>9885</team><id>2081259</id><n>39</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>29</elapsed><subtype>shot</subtype><player1>30731</player1><sortorder>1</sortorder><team>9885</team><id>2081260</id><n>157</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>52</elapsed><player2>38717</player2><subtype>shot</subtype><player1>41890</player1><sortorder>2</sortorder><team>9885</team><id>2081349</id><n>176</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>28</value><value>14</value></coordinates><elapsed>25</elapsed><player2>213653</player2><subtype>distance</subtype><player1>573463</player1><sortorder>7</sortorder><team>9864</team><id>5386277</id><n>163</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>299</event_incident_typefk><coordinates><value>24</value><value>6</value></coordinates><elapsed>50</elapsed><subtype>header</subtype><player1>213653</player1><sortorder>5</sortorder><team>9864</team><id>5386678</id><n>332</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>35</elapsed><player2>23783</player2><subtype>shot</subtype><player1>30753</player1><sortorder>1</sortorder><team>8559</team><id>854836</id><n>287</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>75</elapsed><player2>26461</player2><subtype>shot</subtype><player1>34574</player1><sortorder>1</sortorder><team>9879</team><id>855589</id><n>333</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>3</elapsed><player1>50047</player1><sortorder>0</sortorder><team>8634</team><id>2928438</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>12</elapsed><player1>30981</player1><sortorder>0</sortorder><team>8634</team><id>2928483</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>23</elapsed><player1>33988</player1><sortorder>0</sortorder><team>8634</team><id>2928542</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>26</elapsed><player1>150250</player1><sortorder>0</sortorder><team>8634</team><id>2928558</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>42</elapsed><player1>30981</player1><sortorder>0</sortorder><team>8634</team><id>2928640</id><n>27</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>39854</player1><sortorder>0</sortorder><team>8634</team><id>2928652</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>73</elapsed><player1>150250</player1><sortorder>0</sortorder><team>8634</team><id>2928823</id><n>30</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>25</elapsed><player1>27234</player1><sortorder>0</sortorder><team>10269</team><id>2323903</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>32</elapsed><player1>116772</player1><sortorder>0</sortorder><team>9823</team><id>2323956</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player1>95078</player1><sortorder>0</sortorder><team>9823</team><id>2323957</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>147729</player1><sortorder>0</sortorder><team>9823</team><id>2324013</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>47</elapsed><player1>75447</player1><sortorder>0</sortorder><team>9823</team><id>2324242</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>49</elapsed><player1>116772</player1><sortorder>0</sortorder><team>9823</team><id>2324243</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>51</elapsed><player1>30872</player1><sortorder>0</sortorder><team>9823</team><id>2324244</id><n>28</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>67</value></coordinates><elapsed>10</elapsed><player2>186991</player2><subtype>shot</subtype><player1>96652</player1><sortorder>3</sortorder><team>8603</team><id>5355492</id><n>53</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>21</value><value>65</value></coordinates><elapsed>20</elapsed><player2>722766</player2><subtype>volley</subtype><player1>186991</player1><sortorder>2</sortorder><team>8603</team><id>5355556</id><n>111</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>894</event_incident_typefk><coordinates><value>15</value><value>56</value></coordinates><elapsed>71</elapsed><player2>96652</player2><subtype>indirect freekick</subtype><player1>39719</player1><sortorder>0</sortorder><team>8603</team><id>5356128</id><n>330</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>13</elapsed><player1>37441</player1><sortorder>0</sortorder><team>8558</team><id>2512747</id><n>26</n><type>goal</type><goal_type>p</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>24</elapsed><player1>25773</player1><sortorder>0</sortorder><team>8302</team><id>2512748</id><n>27</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>60</elapsed><player1>30663</player1><sortorder>0</sortorder><team>8558</team><id>2512787</id><n>34</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>75310</player1><sortorder>0</sortorder><team>8302</team><id>2512799</id><n>35</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>23</value><value>65</value></coordinates><elapsed>73</elapsed><player2>27427</player2><subtype>header</subtype><player1>101501</player1><sortorder>2</sortorder><team>8178</team><id>4240990</id><n>345</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>64</value></coordinates><elapsed>84</elapsed><player2>27427</player2><subtype>shot</subtype><player1>212867</player1><sortorder>4</sortorder><team>8178</team><id>4241087</id><n>407</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>80</event_incident_typefk><coordinates><value>28</value><value>61</value></coordinates><elapsed>90</elapsed><subtype>shot</subtype><player1>212867</player1><sortorder>14</sortorder><team>8178</team><id>4241183</id><n>474</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>66</elapsed><player1>27734</player1><sortorder>0</sortorder><team>8600</team><id>2669338</id><n>11</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>31</elapsed><player2>210691</player2><player1>26112</player1><sortorder>0</sortorder><team>8592</team><id>3461875</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>66</elapsed><player2>297579</player2><player1>40707</player1><sortorder>0</sortorder><team>9827</team><id>3461953</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>64</elapsed><player2>164385</player2><subtype>volley</subtype><player1>184821</player1><sortorder>2</sortorder><team>9790</team><id>1795149</id><n>341</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>79</elapsed><player2>39834</player2><subtype>volley</subtype><player1>39840</player1><sortorder>2</sortorder><team>9904</team><id>1795263</id><n>364</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>18</elapsed><player1>25574</player1><sortorder>0</sortorder><team>8661</team><id>825126</id><n>14</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>21</value><value>4</value></coordinates><elapsed>41</elapsed><player2>279879</player2><subtype>volley</subtype><player1>103470</player1><sortorder>2</sortorder><team>9941</team><id>5084969</id><n>233</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>65</value></coordinates><elapsed>48</elapsed><player2>179415</player2><subtype>shot</subtype><player1>210146</player1><sortorder>2</sortorder><team>8689</team><id>5085255</id><n>313</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>31</value><value>54</value></coordinates><elapsed>48</elapsed><player2>179828</player2><subtype>distance</subtype><player1>210146</player1><sortorder>5</sortorder><team>8689</team><id>5085272</id><n>327</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>2</value></coordinates><elapsed>59</elapsed><player2>642618</player2><subtype>shot</subtype><player1>210184</player1><sortorder>3</sortorder><team>9941</team><id>5085503</id><n>388</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>25</value><value>64</value></coordinates><elapsed>76</elapsed><subtype>shot</subtype><player1>179828</player1><sortorder>5</sortorder><team>8689</team><id>5085842</id><n>509</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>53</elapsed><player1>30962</player1><sortorder>0</sortorder><team>8633</team><id>2570022</id><n>31</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>30893</player1><sortorder>0</sortorder><team>8633</team><id>2570064</id><n>33</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>65</elapsed><player1>30893</player1><sortorder>0</sortorder><team>8633</team><id>2570065</id><n>35</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>72</elapsed><player1>30893</player1><sortorder>0</sortorder><team>8633</team><id>2570073</id><n>26</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>40</elapsed><player1>41168</player1><sortorder>0</sortorder><team>8370</team><id>2930085</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>231977</player1><sortorder>0</sortorder><team>8370</team><id>2930106</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>74</elapsed><player1>41168</player1><sortorder>0</sortorder><team>8370</team><id>2930339</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>66</elapsed><player2>19511</player2><subtype>shot</subtype><player1>15403</player1><sortorder>1</sortorder><team>8721</team><id>1040931</id><n>277</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>78</elapsed><player2>30530</player2><subtype>header</subtype><player1>30445</player1><sortorder>2</sortorder><team>8721</team><id>1041004</id><n>309</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><coordinates><value>15</value><value>62</value></coordinates><elapsed>41</elapsed><subtype>volley</subtype><player1>30834</player1><sortorder>1</sortorder><team>9823</team><id>4133140</id><n>502</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>16</value><value>52</value></coordinates><elapsed>50</elapsed><subtype>direct_freekick</subtype><player1>121633</player1><sortorder>1</sortorder><team>9823</team><id>4133773</id><n>387</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>4</value></coordinates><elapsed>18</elapsed><player2>38802</player2><subtype>shot</subtype><player1>664961</player1><sortorder>1</sortorder><team>9748</team><id>4818003</id><n>109</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>23</value><value>9</value></coordinates><elapsed>88</elapsed><subtype>shot</subtype><player1>473852</player1><sortorder>1</sortorder><team>9748</team><id>4819925</id><n>541</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>11</elapsed><player2>24781</player2><subtype>shot</subtype><player1>31907</player1><sortorder>0</sortorder><team>9879</team><id>463522</id><n>211</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>60</elapsed><player2>24843</player2><subtype>shot</subtype><player1>31907</player1><sortorder>2</sortorder><team>9879</team><id>464828</id><n>265</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>32</elapsed><player1>74838</player1><sortorder>0</sortorder><team>8481</team><id>2520456</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>76</elapsed><player1>94010</player1><sortorder>0</sortorder><team>9827</team><id>2520605</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player2>38647</player2><player1>172321</player1><sortorder>0</sortorder><team>9810</team><id>3346122</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player2>488958</player2><player1>11685</player1><sortorder>0</sortorder><team>8543</team><id>3240745</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>71</elapsed><player2>39334</player2><player1>488958</player1><sortorder>0</sortorder><team>8543</team><id>3241149</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>81</elapsed><player1>41758</player1><sortorder>0</sortorder><team>10233</team><id>1270091</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>37</elapsed><player1>113340</player1><sortorder>0</sortorder><team>8165</team><id>1429119</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>52</elapsed><player1>30655</player1><sortorder>0</sortorder><team>10189</team><id>1429607</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>64</elapsed><player1>38567</player1><sortorder>0</sortorder><team>8696</team><id>545075</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>29</value><value>58</value></coordinates><elapsed>34</elapsed><player1>107588</player1><sortorder>1</sortorder><team>8697</team><id>4673295</id><n>156</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>60</value></coordinates><elapsed>68</elapsed><player2>171698</player2><subtype>shot</subtype><player1>95082</player1><sortorder>2</sortorder><team>10189</team><id>4674448</id><n>334</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>60</value></coordinates><elapsed>85</elapsed><player2>530859</player2><subtype>shot</subtype><player1>36784</player1><sortorder>4</sortorder><team>10189</team><id>4674862</id><n>428</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>7</elapsed><subtype>shot</subtype><player1>41294</player1><sortorder>1</sortorder><team>9869</team><id>768378</id><n>189</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>24</elapsed><subtype>loose_ball</subtype><player1>30909</player1><sortorder>2</sortorder><team>10267</team><id>768490</id><n>207</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>60</elapsed><player2>74403</player2><subtype>shot</subtype><player1>30909</player1><sortorder>2</sortorder><team>10267</team><id>768711</id><n>245</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><elapsed>86</elapsed><subtype>header</subtype><player1>101070</player1><sortorder>2</sortorder><team>9869</team><id>768822</id><n>268</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>21</elapsed><player2>156534</player2><subtype>header</subtype><player1>79982</player1><sortorder>1</sortorder><team>2182</team><id>1832788</id><n>321</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>53</elapsed><player2>186968</player2><subtype>header</subtype><player1>79982</player1><sortorder>1</sortorder><team>2182</team><id>1832984</id><n>365</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>55</elapsed><player1>14950</player1><sortorder>2</sortorder><team>8021</team><id>1832999</id><n>374</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>80</elapsed><subtype>shot</subtype><player1>79982</player1><sortorder>5</sortorder><team>2182</team><id>1833087</id><n>400</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>288</event_incident_typefk><elapsed>82</elapsed><subtype>deflected</subtype><player1>300759</player1><sortorder>0</sortorder><team>8021</team><id>1833094</id><n>401</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>24</value><value>13</value></coordinates><elapsed>68</elapsed><player2>416042</player2><subtype>distance</subtype><player1>562697</player1><sortorder>2</sortorder><team>9830</team><id>4217588</id><n>317</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>28</elapsed><player2>34222</player2><subtype>header</subtype><player1>37139</player1><sortorder>2</sortorder><team>8650</team><id>486531</id><n>253</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><elapsed_plus>2</elapsed_plus><event_incident_typefk>299</event_incident_typefk><elapsed>45</elapsed><subtype>header</subtype><player1>23783</player1><sortorder>0</sortorder><team>8559</team><id>486560</id><n>101</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>73</elapsed><player2>30853</player2><subtype>header</subtype><player1>30618</player1><sortorder>1</sortorder><team>8650</team><id>486671</id><n>300</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>28</value><value>8</value></coordinates><elapsed>15</elapsed><player2>116772</player2><subtype>volley</subtype><player1>93447</player1><sortorder>2</sortorder><team>9823</team><id>4338324</id><n>92</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><coordinates><value>27</value><value>7</value></coordinates><elapsed>41</elapsed><subtype>shot</subtype><player1>116772</player1><sortorder>3</sortorder><team>9823</team><id>4338772</id><n>230</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><coordinates><value>20</value><value>3</value></coordinates><elapsed>66</elapsed><subtype>loose_ball</subtype><player1>93447</player1><sortorder>3</sortorder><team>9823</team><id>4339697</id><n>359</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>15</value><value>2</value></coordinates><elapsed>82</elapsed><player2>298823</player2><subtype>shot</subtype><player1>116772</player1><sortorder>2</sortorder><team>9823</team><id>4340054</id><n>420</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><coordinates><value>11</value><value>12</value></coordinates><elapsed>32</elapsed><player2>574656</player2><subtype>deflected</subtype><player1>541557</player1><sortorder>1</sortorder><team>9869</team><id>5261322</id><n>172</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>31</value><value>63</value></coordinates><elapsed>41</elapsed><player2>194660</player2><subtype>shot</subtype><player1>198566</player1><sortorder>2</sortorder><team>9783</team><id>5261360</id><n>212</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player1>154249</player1><sortorder>0</sortorder><team>8551</team><id>1675691</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>53</elapsed><player1>42041</player1><sortorder>0</sortorder><team>8551</team><id>1676374</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>70</elapsed><player1>42041</player1><sortorder>0</sortorder><team>8551</team><id>1676682</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>77</elapsed><player2>47565</player2><player1>75342</player1><sortorder>0</sortorder><team>8560</team><id>3451069</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>101419</player1><sortorder>0</sortorder><team>7878</team><id>3451077</id><n>28</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>63</value></coordinates><elapsed>12</elapsed><player2>41658</player2><subtype>shot</subtype><player1>25759</player1><sortorder>3</sortorder><team>9875</team><id>5592458</id><n>95</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>20</value><value>67</value></coordinates><elapsed>20</elapsed><player2>41658</player2><subtype>tap_in</subtype><player1>150330</player1><sortorder>1</sortorder><team>9875</team><id>5592489</id><n>133</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>20</value><value>6</value></coordinates><elapsed>66</elapsed><player2>41432</player2><subtype>volley</subtype><player1>267911</player1><sortorder>1</sortorder><team>9804</team><id>5592743</id><n>344</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>9</elapsed><player1>30981</player1><sortorder>1</sortorder><team>8634</team><id>4412201</id><n>35</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>27</value><value>7</value></coordinates><elapsed>25</elapsed><player2>30981</player2><subtype>volley</subtype><player1>40636</player1><sortorder>3</sortorder><team>8634</team><id>4412297</id><n>115</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>8</value></coordinates><elapsed>28</elapsed><player2>40636</player2><subtype>shot</subtype><player1>19533</player1><sortorder>3</sortorder><team>8634</team><id>4412312</id><n>135</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>15</value><value>14</value></coordinates><elapsed>30</elapsed><player2>19533</player2><subtype>distance</subtype><player1>39854</player1><sortorder>2</sortorder><team>8634</team><id>4412318</id><n>146</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>16</value><value>11</value></coordinates><elapsed>40</elapsed><player2>39854</player2><subtype>shot</subtype><player1>40636</player1><sortorder>1</sortorder><team>8634</team><id>4412350</id><n>184</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>33</value><value>7</value></coordinates><elapsed>47</elapsed><player2>40636</player2><subtype>shot</subtype><player1>30981</player1><sortorder>3</sortorder><team>8634</team><id>4412559</id><n>223</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>391</event_incident_typefk><elapsed>8</elapsed><player2>30373</player2><subtype>loose_ball</subtype><player1>30829</player1><sortorder>3</sortorder><team>10260</team><id>921626</id><n>266</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>82</elapsed><player2>24156</player2><subtype>shot</subtype><player1>30829</player1><sortorder>3</sortorder><team>10260</team><id>922331</id><n>294</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>86</elapsed><player2>40945</player2><subtype>header</subtype><player1>30829</player1><sortorder>1</sortorder><team>10260</team><id>922345</id><n>307</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>27430</player2><subtype>shot</subtype><player1>30829</player1><sortorder>1</sortorder><team>10260</team><id>922401</id><n>349</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>12</elapsed><player2>129391</player2><subtype>shot</subtype><player1>49677</player1><sortorder>0</sortorder><team>8540</team><id>1086559</id><n>206</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>48</elapsed><subtype>shot</subtype><player1>39502</player1><sortorder>2</sortorder><team>8524</team><id>1087377</id><n>247</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><elapsed_plus>5</elapsed_plus><event_incident_typefk>20</event_incident_typefk><elapsed>90</elapsed><player1>49677</player1><sortorder>2</sortorder><team>8540</team><id>1088273</id><n>295</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>14</elapsed><player2>113465</player2><subtype>shot</subtype><player1>39987</player1><sortorder>11</sortorder><team>10172</team><id>2629123</id><n>269</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>131</event_incident_typefk><elapsed>45</elapsed><subtype>loose_ball</subtype><player1>190872</player1><sortorder>14</sortorder><team>8466</team><id>2629654</id><n>302</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><elapsed>77</elapsed><player2>30802</player2><subtype>tap_in</subtype><player1>35338</player1><sortorder>22</sortorder><team>10172</team><id>2630357</id><n>341</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>32</elapsed><player1>18734</player1><sortorder>0</sortorder><team>9831</team><id>2384249</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>42</elapsed><player1>32578</player1><sortorder>0</sortorder><team>7794</team><id>2384261</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>58</elapsed><player1>40020</player1><sortorder>0</sortorder><team>9831</team><id>2384299</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>71</elapsed><player1>71605</player1><sortorder>0</sortorder><team>7794</team><id>2384315</id><n>30</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player1>39295</player1><sortorder>0</sortorder><team>9882</team><id>3177092</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>54</elapsed><player2>34104</player2><player1>309334</player1><sortorder>0</sortorder><team>8370</team><id>3422410</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>59</elapsed><player2>41168</player2><player1>96509</player1><sortorder>0</sortorder><team>8370</team><id>3422524</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>86</elapsed><player2>96509</player2><player1>56819</player1><sortorder>0</sortorder><team>8370</team><id>3423101</id><n>32</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>56</elapsed><player2>49860</player2><subtype>distance</subtype><player1>25818</player1><sortorder>0</sortorder><team>8600</team><id>1511380</id><n>181</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>62</elapsed><player2>49860</player2><subtype>shot</subtype><player1>35421</player1><sortorder>0</sortorder><team>8600</team><id>1511395</id><n>185</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><elapsed>89</elapsed><subtype>saved_back_into_play</subtype><player1>49677</player1><sortorder>0</sortorder><team>9875</team><id>1511491</id><n>130</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>6</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>49677</player2><subtype>shot</subtype><player1>39706</player1><sortorder>0</sortorder><team>9875</team><id>1511520</id><n>214</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player2>362113</player2><player1>163557</player1><sortorder>0</sortorder><team>8537</team><id>3268491</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>54</elapsed><player1>27613</player1><sortorder>0</sortorder><team>8537</team><id>3268565</id><n>29</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>64</elapsed><player1>34633</player1><sortorder>2</sortorder><team>8529</team><id>3268598</id><n>31</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>4</value></coordinates><elapsed>5</elapsed><player2>211091</player2><subtype>shot</subtype><player1>362121</player1><sortorder>1</sortorder><team>8540</team><id>5103175</id><n>64</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>6</value></coordinates><elapsed>17</elapsed><player2>434778</player2><subtype>shot</subtype><player1>270774</player1><sortorder>1</sortorder><team>8540</team><id>5103246</id><n>115</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>19</value><value>64</value></coordinates><elapsed>24</elapsed><subtype>shot</subtype><player1>33706</player1><sortorder>5</sortorder><team>9891</team><id>5103319</id><n>274</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>10</value><value>9</value></coordinates><elapsed>60</elapsed><player2>434778</player2><subtype>shot</subtype><player1>208852</player1><sortorder>1</sortorder><team>8540</team><id>5103976</id><n>686</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><coordinates><value>25</value><value>3</value></coordinates><elapsed>86</elapsed><subtype>header</subtype><player1>30881</player1><sortorder>2</sortorder><team>8540</team><id>5104296</id><n>843</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>25</elapsed><player2>41694</player2><subtype>header</subtype><player1>41412</player1><sortorder>0</sortorder><team>8530</team><id>1874299</id><n>236</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>29</elapsed><player2>30714</player2><subtype>header</subtype><player1>30682</player1><sortorder>0</sortorder><team>8686</team><id>1874322</id><n>241</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>14</elapsed><player2>175947</player2><subtype>shot</subtype><player1>33468</player1><sortorder>3</sortorder><team>8472</team><id>1888594</id><n>219</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>85</elapsed><player2>33468</player2><subtype>distance</subtype><player1>25075</player1><sortorder>0</sortorder><team>8472</team><id>1889941</id><n>236</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>4</elapsed><player1>37280</player1><sortorder>5</sortorder><team>8659</team><id>1529033</id><n>136</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>60</elapsed><subtype>loose_ball</subtype><player1>25550</player1><sortorder>0</sortorder><team>8659</team><id>1529784</id><n>172</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>84</elapsed><player2>40553</player2><subtype>shot</subtype><player1>71502</player1><sortorder>1</sortorder><team>8659</team><id>1530054</id><n>201</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>30</elapsed><player2>36641</player2><subtype>shot</subtype><player1>206774</player1><sortorder>1</sortorder><team>8245</team><id>1950228</id><n>255</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><elapsed>41</elapsed><player2>69214</player2><subtype>tap_in</subtype><player1>206774</player1><sortorder>3</sortorder><team>8245</team><id>1950273</id><n>276</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>54</elapsed><player1>38098</player1><sortorder>0</sortorder><team>8592</team><id>2296872</id><n>13</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>26307</player1><sortorder>0</sortorder><team>8592</team><id>2297057</id><n>14</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>32</elapsed><player1>26402</player1><sortorder>0</sortorder><team>9837</team><id>2652922</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>23</value><value>17</value></coordinates><elapsed>3</elapsed><player2>213501</player2><subtype>distance</subtype><player1>248453</player1><sortorder>1</sortorder><team>9885</team><id>4082813</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>27</value><value>8</value></coordinates><elapsed>7</elapsed><subtype>shot</subtype><player1>38817</player1><sortorder>1</sortorder><team>9885</team><id>4082827</id><n>37</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>14</value><value>6</value></coordinates><elapsed>66</elapsed><player2>41884</player2><subtype>shot</subtype><player1>210278</player1><sortorder>1</sortorder><team>9885</team><id>4083239</id><n>333</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>31</value><value>7</value></coordinates><elapsed>74</elapsed><player2>41890</player2><subtype>shot</subtype><player1>38817</player1><sortorder>1</sortorder><team>9885</team><id>4083300</id><n>369</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>54</elapsed><player1>27599</player1><sortorder>0</sortorder><team>8524</team><id>510082</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>68</elapsed><player1>27657</player1><sortorder>0</sortorder><team>8524</team><id>510275</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><elapsed>16</elapsed><player2>39618</player2><subtype>deflected</subtype><player1>36012</player1><sortorder>2</sortorder><team>8668</team><id>2138310</id><n>198</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>27</elapsed><subtype>loose_ball</subtype><player1>8922</player1><sortorder>4</sortorder><team>8668</team><id>2138583</id><n>208</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>65</elapsed><player2>24156</player2><subtype>header</subtype><player1>30839</player1><sortorder>2</sortorder><team>8668</team><id>2139723</id><n>249</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>73</elapsed><player1>24023</player1><sortorder>1</sortorder><team>8668</team><id>2139918</id><n>250</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>5</elapsed><player1>116772</player1><sortorder>0</sortorder><team>9823</team><id>1492391</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>60</elapsed><player1>33772</player1><sortorder>0</sortorder><team>8165</team><id>1493530</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><elapsed>40</elapsed><subtype>header</subtype><player1>23538</player1><sortorder>1</sortorder><team>8654</team><id>3391831</id><n>231</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>44</elapsed><player2>37436</player2><subtype>shot</subtype><player1>32118</player1><sortorder>3</sortorder><team>9825</team><id>3391850</id><n>260</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>55</elapsed><player2>26005</player2><subtype>shot</subtype><player1>46469</player1><sortorder>4</sortorder><team>9825</team><id>3391971</id><n>274</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>78</elapsed><player2>75489</player2><subtype>shot</subtype><player1>32118</player1><sortorder>2</sortorder><team>9825</team><id>3392078</id><n>271</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>27</elapsed><player1>109615</player1><sortorder>0</sortorder><team>8178</team><id>2745292</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>62</elapsed><player1>31199</player1><sortorder>0</sortorder><team>8178</team><id>2745974</id><n>18</n><type>goal</type><goal_type>p</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>81</elapsed><player1>71560</player1><sortorder>0</sortorder><team>8178</team><id>2746222</id><n>9</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>29</elapsed><player2>30503</player2><subtype>distance</subtype><player1>148315</player1><sortorder>3</sortorder><team>10252</team><id>2518981</id><n>205</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>41</elapsed><player2>148315</player2><subtype>shot</subtype><player1>184360</player1><sortorder>1</sortorder><team>10252</team><id>2519112</id><n>212</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>51</elapsed><player2>30503</player2><subtype>shot</subtype><player1>148315</player1><sortorder>1</sortorder><team>10252</team><id>2519277</id><n>228</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>87</elapsed><player2>34036</player2><subtype>header</subtype><player1>30618</player1><sortorder>1</sortorder><team>8650</team><id>2519692</id><n>267</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>35</elapsed><subtype>shot</subtype><player1>41269</player1><sortorder>1</sortorder><team>8535</team><id>2118334</id><n>225</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>8</elapsed><player1>103424</player1><sortorder>0</sortorder><team>7878</team><id>2471351</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>96652</player1><sortorder>0</sortorder><team>8603</team><id>2471412</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>74</elapsed><player1>43375</player1><sortorder>0</sortorder><team>7878</team><id>2471414</id><n>29</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>23</elapsed><player1>34417</player1><sortorder>0</sortorder><team>8689</team><id>2352011</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>34417</player1><sortorder>0</sortorder><team>8689</team><id>2352046</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>71</elapsed><player1>38216</player1><sortorder>0</sortorder><team>9851</team><id>2352187</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>23</value><value>6</value></coordinates><elapsed>2</elapsed><player2>164684</player2><subtype>header</subtype><player1>31921</player1><sortorder>3</sortorder><team>8633</team><id>4724467</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>39</value><value>7</value></coordinates><elapsed>39</elapsed><subtype>direct_freekick</subtype><player1>164684</player1><sortorder>0</sortorder><team>8633</team><id>4724650</id><n>232</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>25</value><value>4</value></coordinates><elapsed>47</elapsed><player2>31921</player2><subtype>header</subtype><player1>26166</player1><sortorder>3</sortorder><team>8633</team><id>4724735</id><n>268</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>390</event_incident_typefk><coordinates><value>23</value><value>6</value></coordinates><elapsed>49</elapsed><player2>95078</player2><subtype>bicycle_kick</subtype><player1>164684</player1><sortorder>5</sortorder><team>8633</team><id>4724748</id><n>340</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>159</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>61</elapsed><subtype>saved</subtype><player1>96652</player1><sortorder>0</sortorder><team>8603</team><id>4724817</id><n>380</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>21</value><value>21</value></coordinates><elapsed>89</elapsed><player2>208494</player2><subtype>distance</subtype><player1>31921</player1><sortorder>1</sortorder><team>8633</team><id>4724909</id><n>483</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>3</elapsed><player1>32746</player1><sortorder>1</sortorder><team>9875</team><id>1846329</id><n>278</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>59</elapsed><player2>30714</player2><subtype>shot</subtype><player1>40165</player1><sortorder>5</sortorder><team>8686</team><id>1846889</id><n>356</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>82</elapsed><player2>50074</player2><subtype>shot</subtype><player1>41658</player1><sortorder>2</sortorder><team>9875</team><id>1847058</id><n>388</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><elapsed>90</elapsed><player2>40165</player2><subtype>deflected</subtype><player1>33337</player1><sortorder>0</sortorder><team>8686</team><id>1847105</id><n>400</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>22</value><value>1</value></coordinates><elapsed>88</elapsed><player2>196366</player2><subtype>tap_in</subtype><player1>193866</player1><sortorder>3</sortorder><team>8697</team><id>5606018</id><n>474</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player1>30670</player1><sortorder>0</sortorder><team>8592</team><id>1472367</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>27</elapsed><player1>41174</player1><sortorder>0</sortorder><team>9847</team><id>1472434</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>35</elapsed><player1>95955</player1><sortorder>0</sortorder><team>8592</team><id>1472435</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>16</value><value>3</value></coordinates><elapsed>26</elapsed><player2>240837</player2><subtype>shot</subtype><player1>281086</player1><sortorder>1</sortorder><team>8358</team><id>4183439</id><n>140</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>23</value><value>54</value></coordinates><elapsed>39</elapsed><player2>71605</player2><subtype>distance</subtype><player1>212893</player1><sortorder>0</sortorder><team>8226</team><id>4183767</id><n>222</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>26</elapsed><subtype>shot</subtype><player1>37506</player1><sortorder>5</sortorder><team>10267</team><id>1304470</id><n>141</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>63</elapsed><subtype>shot</subtype><player1>37506</player1><sortorder>5</sortorder><team>10267</team><id>1304622</id><n>165</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><elapsed>90</elapsed><subtype>header</subtype><player1>26554</player1><sortorder>3</sortorder><team>9865</team><id>1304690</id><n>183</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>70</elapsed><player2>32999</player2><player1>209950</player1><sortorder>0</sortorder><team>8305</team><id>3468532</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>7</elapsed><player1>174850</player1><sortorder>0</sortorder><team>8686</team><id>2655448</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>70</elapsed><player1>30714</player1><sortorder>0</sortorder><team>8686</team><id>2655501</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>31</value><value>10</value></coordinates><elapsed>3</elapsed><player2>170341</player2><subtype>shot</subtype><player1>42524</player1><sortorder>3</sortorder><team>8372</team><id>3999553</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>12</value><value>8</value></coordinates><elapsed>21</elapsed><player2>433311</player2><subtype>shot</subtype><player1>213712</player1><sortorder>2</sortorder><team>8372</team><id>3999591</id><n>77</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>22</value><value>4</value></coordinates><elapsed>31</elapsed><player2>213712</player2><subtype>header</subtype><player1>477471</player1><sortorder>1</sortorder><team>8372</team><id>3999612</id><n>109</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>26</value><value>68</value></coordinates><elapsed>43</elapsed><player2>280485</player2><subtype>tap_in</subtype><player1>11555</player1><sortorder>6</sortorder><team>9865</team><id>3999647</id><n>151</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>29</value><value>4</value></coordinates><elapsed>57</elapsed><player2>37474</player2><subtype>header</subtype><player1>173965</player1><sortorder>3</sortorder><team>8372</team><id>3999691</id><n>216</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>11</value></coordinates><elapsed>74</elapsed><player2>213695</player2><subtype>shot</subtype><player1>449492</player1><sortorder>2</sortorder><team>8372</team><id>3999734</id><n>277</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>31</value><value>65</value></coordinates><elapsed>77</elapsed><player2>260659</player2><subtype>volley</subtype><player1>477493</player1><sortorder>2</sortorder><team>9865</team><id>3999740</id><n>288</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>22</elapsed><player1>25366</player1><sortorder>0</sortorder><team>8697</team><id>735120</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>38</elapsed><player1>25366</player1><sortorder>0</sortorder><team>8697</team><id>735182</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>56</elapsed><player1>36378</player1><sortorder>0</sortorder><team>8697</team><id>735377</id><n>10</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>88</elapsed><player1>28480</player1><sortorder>0</sortorder><team>8697</team><id>735507</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>406</event_incident_typefk><coordinates><value>21</value><value>63</value></coordinates><elapsed>45</elapsed><player2>46621</player2><subtype>header</subtype><player1>291635</player1><sortorder>6</sortorder><team>8306</team><id>5329883</id><n>300</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>6</elapsed><player1>33028</player1><sortorder>0</sortorder><team>8315</team><id>3845587</id><n>258</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>31</value><value>63</value></coordinates><elapsed>73</elapsed><player2>49836</player2><subtype>shot</subtype><player1>213486</player1><sortorder>1</sortorder><team>9910</team><id>3846718</id><n>324</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>npm</comment><event_incident_typefk>24</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>29</elapsed><subtype>crossbar</subtype><player1>19533</player1><sortorder>1</sortorder><team>8634</team><id>5138260</id><n>241</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>28</value><value>8</value></coordinates><elapsed>29</elapsed><player1>27461</player1><sortorder>2</sortorder><team>8603</team><id>5138269</id><n>242</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>6</value></coordinates><elapsed>33</elapsed><player2>19533</player2><subtype>shot</subtype><player1>30981</player1><sortorder>1</sortorder><team>8634</team><id>5138298</id><n>150</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>7</value></coordinates><elapsed>46</elapsed><player2>154257</player2><subtype>shot</subtype><player1>40636</player1><sortorder>2</sortorder><team>8634</team><id>5138510</id><n>264</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>6</value></coordinates><elapsed>83</elapsed><player2>19533</player2><subtype>shot</subtype><player1>40636</player1><sortorder>2</sortorder><team>8634</team><id>5138852</id><n>483</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>57</elapsed><player1>36786</player1><sortorder>3</sortorder><team>8472</team><id>3072628</id><n>252</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>58</elapsed><player2>38831</player2><subtype>shot</subtype><player1>24123</player1><sortorder>1</sortorder><team>10003</team><id>3072652</id><n>255</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>64</elapsed><player1>143365</player1><sortorder>3</sortorder><team>10003</team><id>3072777</id><n>265</n><type>goal</type><goal_type>p</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>80</elapsed><player1>32627</player1><sortorder>3</sortorder><team>8472</team><id>3073051</id><n>280</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>80</elapsed><player2>113340</player2><subtype>shot</subtype><player1>150292</player1><sortorder>3</sortorder><team>8165</team><id>1599161</id><n>302</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><elapsed>6</elapsed><subtype>header</subtype><player1>15403</player1><sortorder>3</sortorder><team>8721</team><id>1242236</id><n>252</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><elapsed>76</elapsed><subtype>header</subtype><player1>15403</player1><sortorder>1</sortorder><team>8721</team><id>1243101</id><n>350</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>28</elapsed><player1>26374</player1><sortorder>0</sortorder><team>9853</team><id>3356224</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>39</elapsed><player2>26344</player2><player1>169193</player1><sortorder>0</sortorder><team>9748</team><id>3356252</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>74</elapsed><player1>46349</player1><sortorder>0</sortorder><team>9853</team><id>3356390</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>19</elapsed><player1>30675</player1><sortorder>1</sortorder><team>8455</team><id>2129797</id><n>256</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>25</elapsed><player2>33632</player2><subtype>shot</subtype><player1>156008</player1><sortorder>3</sortorder><team>8650</team><id>2129822</id><n>263</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>28</elapsed><player2>47382</player2><subtype>header</subtype><player1>25984</player1><sortorder>5</sortorder><team>8650</team><id>2129834</id><n>267</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><elapsed_plus>3</elapsed_plus><event_incident_typefk>23</event_incident_typefk><elapsed>45</elapsed><subtype>post</subtype><player1>30892</player1><sortorder>0</sortorder><team>8650</team><id>2129919</id><n>119</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><elapsed>50</elapsed><player2>30679</player2><subtype>tap_in</subtype><player1>79574</player1><sortorder>2</sortorder><team>8455</team><id>2129954</id><n>303</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>61</elapsed><subtype>distance</subtype><player1>127130</player1><sortorder>1</sortorder><team>8650</team><id>2129991</id><n>309</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>28</elapsed><subtype>shot</subtype><player1>38216</player1><sortorder>5</sortorder><team>9790</team><id>629196</id><n>259</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><elapsed>25</elapsed><subtype>volley</subtype><player1>33101</player1><sortorder>10</sortorder><team>9790</team><id>1782890</id><n>267</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>65</elapsed><subtype>shot</subtype><player1>30987</player1><sortorder>10</sortorder><team>9790</team><id>1783475</id><n>322</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>14</elapsed><player1>169200</player1><sortorder>0</sortorder><team>8721</team><id>3441580</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player2>27642</player2><player1>27324</player1><sortorder>0</sortorder><team>10269</team><id>3442439</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player2>40193</player2><player1>30764</player1><sortorder>0</sortorder><team>8721</team><id>3442873</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>19</value><value>9</value></coordinates><elapsed>2</elapsed><subtype>shot</subtype><player1>516846</player1><sortorder>2</sortorder><team>8178</team><id>5556949</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>22</value><value>5</value></coordinates><elapsed>16</elapsed><subtype>shot</subtype><player1>37373</player1><sortorder>2</sortorder><team>8178</team><id>5557128</id><n>46</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>21</value><value>63</value></coordinates><elapsed>21</elapsed><player2>12330</player2><subtype>header</subtype><player1>36084</player1><sortorder>2</sortorder><team>8177</team><id>5557205</id><n>68</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>16</value><value>60</value></coordinates><elapsed>45</elapsed><player2>359193</player2><subtype>shot</subtype><player1>38578</player1><sortorder>0</sortorder><team>8558</team><id>4420860</id><n>143</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>22</value><value>5</value></coordinates><elapsed>73</elapsed><player2>256727</player2><subtype>header</subtype><player1>2752</player1><sortorder>3</sortorder><team>7878</team><id>4420953</id><n>281</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>17</value><value>64</value></coordinates><elapsed>84</elapsed><subtype>shot</subtype><player1>37654</player1><sortorder>1</sortorder><team>8558</team><id>4420979</id><n>325</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>8</elapsed><player2>30889</player2><subtype>volley</subtype><player1>37139</player1><sortorder>2</sortorder><team>8650</team><id>621827</id><n>198</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>33</elapsed><player2>30660</player2><subtype>shot</subtype><player1>37920</player1><sortorder>1</sortorder><team>8650</team><id>622096</id><n>228</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>39</elapsed><player1>30618</player1><sortorder>1</sortorder><team>8650</team><id>622184</id><n>232</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>50</elapsed><player2>30889</player2><subtype>distance</subtype><player1>30618</player1><sortorder>1</sortorder><team>8650</team><id>622430</id><n>246</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>65</elapsed><player1>30618</player1><sortorder>0</sortorder><team>8650</team><id>622555</id><n>257</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>1</elapsed><player2>119525</player2><subtype>shot</subtype><player1>36084</player1><sortorder>1</sortorder><team>8226</team><id>1179424</id><n>246</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>63</elapsed><subtype>loose_ball</subtype><player1>116772</player1><sortorder>2</sortorder><team>9823</team><id>1180092</id><n>329</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>80</event_incident_typefk><elapsed>90</elapsed><subtype>shot</subtype><player1>33085</player1><sortorder>4</sortorder><team>9823</team><id>1180403</id><n>346</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>52</elapsed><player1>42119</player1><sortorder>0</sortorder><team>8358</team><id>3145079</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player1>50047</player1><sortorder>0</sortorder><team>8634</team><id>2594703</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>13</elapsed><player1>30981</player1><sortorder>0</sortorder><team>8634</team><id>2594715</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>58</elapsed><player1>30909</player1><sortorder>0</sortorder><team>8634</team><id>2594878</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player1>213704</player1><sortorder>0</sortorder><team>8634</team><id>2594962</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>83</elapsed><player1>213489</player1><sortorder>0</sortorder><team>8305</team><id>2594963</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>30955</player1><sortorder>0</sortorder><team>8634</team><id>2595016</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>37482</player1><sortorder>0</sortorder><team>8634</team><id>2595017</id><n>30</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>5</elapsed><player2>110113</player2><player1>37173</player1><sortorder>0</sortorder><team>10218</team><id>4216265</id><n>43</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>50</elapsed><player2>422413</player2><player1>160906</player1><sortorder>0</sortorder><team>10218</team><id>4216619</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player2>37173</player2><player1>467466</player1><sortorder>0</sortorder><team>10218</team><id>4216953</id><n>40</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>3</value></coordinates><elapsed>11</elapsed><player2>37317</player2><subtype>shot</subtype><player1>298915</player1><sortorder>2</sortorder><team>8721</team><id>5604100</id><n>64</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><coordinates><value>32</value><value>7</value></coordinates><elapsed>29</elapsed><player2>188498</player2><subtype>deflected</subtype><player1>178812</player1><sortorder>2</sortorder><team>8721</team><id>5604504</id><n>148</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>19</value><value>54</value></coordinates><elapsed>78</elapsed><subtype>direct_freekick</subtype><player1>141145</player1><sortorder>0</sortorder><team>10269</team><id>5605750</id><n>410</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>393</event_incident_typefk><coordinates><value>13</value><value>6</value></coordinates><elapsed>90</elapsed><player2>243164</player2><subtype>shot</subtype><player1>178812</player1><sortorder>8</sortorder><team>8721</team><id>5606151</id><n>507</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>17</elapsed><player1>36133</player1><sortorder>0</sortorder><team>9905</team><id>2776869</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>23</elapsed><player1>27488</player1><sortorder>0</sortorder><team>9905</team><id>2776888</id><n>23</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>33</elapsed><player1>38842</player1><sortorder>0</sortorder><team>10269</team><id>2776920</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>42</elapsed><player1>97747</player1><sortorder>0</sortorder><team>9905</team><id>2776936</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>66</value></coordinates><elapsed>83</elapsed><player2>36554</player2><subtype>shot</subtype><player1>36889</player1><sortorder>1</sortorder><team>8262</team><id>5418743</id><n>1269</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>407</event_incident_typefk><coordinates><value>14</value><value>14</value></coordinates><elapsed>90</elapsed><player2>58346</player2><subtype>distance</subtype><player1>178812</player1><sortorder>8</sortorder><team>8721</team><id>5419061</id><n>1358</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>2</elapsed><player1>58346</player1><sortorder>0</sortorder><team>8358</team><id>2640516</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>7</elapsed><player1>27512</player1><sortorder>0</sortorder><team>8358</team><id>2640517</id><n>28</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player1>40193</player1><sortorder>0</sortorder><team>8721</team><id>2640526</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>22</elapsed><player1>30764</player1><sortorder>0</sortorder><team>8721</team><id>2640538</id><n>37</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>49</elapsed><player1>30764</player1><sortorder>0</sortorder><team>8721</team><id>2640918</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>65</elapsed><player1>37087</player1><sortorder>0</sortorder><team>8358</team><id>2641052</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>31235</player1><sortorder>0</sortorder><team>8721</team><id>2641324</id><n>33</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>37</elapsed><player1>25819</player1><sortorder>0</sortorder><team>9788</team><id>3144182</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>73</elapsed><player1>33579</player1><sortorder>0</sortorder><team>9788</team><id>3144214</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>dg</comment><event_incident_typefk>299</event_incident_typefk><elapsed>13</elapsed><subtype>header</subtype><player1>70812</player1><sortorder>1</sortorder><team>8558</team><id>1766619</id><n>30</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>19</elapsed><player2>31921</player2><subtype>shot</subtype><player1>30840</player1><sortorder>8</sortorder><team>8586</team><id>2027320</id><n>200</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>59</elapsed><player2>38831</player2><subtype>shot</subtype><player1>157729</player1><sortorder>1</sortorder><team>10003</team><id>2027777</id><n>235</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>73</elapsed><player2>30840</player2><subtype>header</subtype><player1>30960</player1><sortorder>4</sortorder><team>8586</team><id>2027910</id><n>254</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>86</elapsed><player2>30895</player2><subtype>header</subtype><player1>30960</player1><sortorder>4</sortorder><team>8586</team><id>2028038</id><n>265</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>6</elapsed><subtype>shot</subtype><player1>30834</player1><sortorder>1</sortorder><team>9823</team><id>1530398</id><n>252</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>8</elapsed><player1>94886</player1><sortorder>0</sortorder><team>9823</team><id>1530415</id><n>255</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>13</elapsed><subtype>shot</subtype><player1>116772</player1><sortorder>2</sortorder><team>9823</team><id>1530480</id><n>260</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>19</elapsed><subtype>shot</subtype><player1>27326</player1><sortorder>3</sortorder><team>9823</team><id>1530528</id><n>264</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>84</elapsed><subtype>shot</subtype><player1>116772</player1><sortorder>2</sortorder><team>9823</team><id>1531284</id><n>345</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>37</elapsed><player2>24890</player2><subtype>shot</subtype><player1>35454</player1><sortorder>1</sortorder><team>10261</team><id>1875511</id><n>200</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player1>155066</player1><sortorder>0</sortorder><team>9888</team><id>1765331</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>11</elapsed><player1>19243</player1><sortorder>0</sortorder><team>9906</team><id>3027501</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>32</value><value>63</value></coordinates><elapsed>22</elapsed><player2>33852</player2><subtype>shot</subtype><player1>194660</player1><sortorder>1</sortorder><team>9783</team><id>5006032</id><n>318</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>20</value><value>14</value></coordinates><elapsed>53</elapsed><subtype>direct_freekick</subtype><player1>513086</player1><sortorder>0</sortorder><team>8581</team><id>5006608</id><n>424</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>3</elapsed><player1>37412</player1><sortorder>0</sortorder><team>9906</team><id>576682</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>27</elapsed><player1>38460</player1><sortorder>0</sortorder><team>9906</team><id>576841</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player1>38460</player1><sortorder>0</sortorder><team>9906</team><id>576875</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>49</elapsed><player2>213682</player2><player1>147594</player1><sortorder>0</sortorder><team>9791</team><id>4488190</id><n>13</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>25</value><value>1</value></coordinates><elapsed>2</elapsed><player2>109897</player2><subtype>tap_in</subtype><player1>35110</player1><sortorder>2</sortorder><team>8654</team><id>3747465</id><n>217</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>35</value><value>9</value></coordinates><elapsed>7</elapsed><player2>37169</player2><subtype>shot</subtype><player1>192899</player1><sortorder>3</sortorder><team>8654</team><id>3747544</id><n>221</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>18</value><value>59</value></coordinates><elapsed>27</elapsed><subtype>shot</subtype><player1>246575</player1><sortorder>1</sortorder><team>8650</team><id>3747812</id><n>238</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>8</value></coordinates><elapsed>88</elapsed><player2>30892</player2><subtype>shot</subtype><player1>41232</player1><sortorder>2</sortorder><team>8654</team><id>3748884</id><n>308</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>15</elapsed><player2>147731</player2><subtype>shot</subtype><player1>99031</player1><sortorder>2</sortorder><team>8722</team><id>1046545</id><n>240</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>78</elapsed><player2>32118</player2><subtype>shot</subtype><player1>99031</player1><sortorder>1</sortorder><team>8722</team><id>1046846</id><n>313</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>7</value></coordinates><elapsed>35</elapsed><player2>35493</player2><subtype>shot</subtype><player1>31953</player1><sortorder>4</sortorder><team>9850</team><id>4758398</id><n>260</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>16</value><value>12</value></coordinates><elapsed>52</elapsed><subtype>shot</subtype><player1>35493</player1><sortorder>2</sortorder><team>9850</team><id>4759174</id><n>374</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>8</value></coordinates><elapsed>67</elapsed><player2>46354</player2><subtype>shot</subtype><player1>23538</player1><sortorder>3</sortorder><team>9850</team><id>4759656</id><n>508</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>81</elapsed><player2>35515</player2><subtype>header</subtype><player1>156013</player1><sortorder>3</sortorder><team>8678</team><id>4759978</id><n>575</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>34</elapsed><player2>23253</player2><subtype>shot</subtype><player1>32148</player1><sortorder>1</sortorder><team>10194</team><id>2293537</id><n>243</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>89</elapsed><player1>24952</player1><sortorder>3</sortorder><team>9798</team><id>2294466</id><n>302</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>7</elapsed><player2>75307</player2><player1>50661</player1><sortorder>0</sortorder><team>10267</team><id>3356160</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>25</elapsed><player2>37449</player2><player1>38573</player1><sortorder>0</sortorder><team>8305</team><id>3356207</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>27</elapsed><player2>209950</player2><player1>40203</player1><sortorder>0</sortorder><team>8305</team><id>3356217</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>87</elapsed><player2>32999</player2><player1>75192</player1><sortorder>0</sortorder><team>8305</team><id>3356414</id><n>35</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>46</elapsed><player2>30892</player2><subtype>shot</subtype><player1>23933</player1><sortorder>3</sortorder><team>8654</team><id>3250934</id><n>232</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>48</elapsed><subtype>shot</subtype><player1>23933</player1><sortorder>1</sortorder><team>8654</team><id>3250960</id><n>233</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>52</elapsed><player1>215798</player1><sortorder>0</sortorder><team>9829</team><id>3207242</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>68</elapsed><player1>46241</player1><sortorder>0</sortorder><team>10249</team><id>3207247</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>39</elapsed><player2>37804</player2><subtype>shot</subtype><player1>30822</player1><sortorder>1</sortorder><team>8455</team><id>734980</id><n>156</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>76</elapsed><player2>30822</player2><subtype>shot</subtype><player1>37804</player1><sortorder>1</sortorder><team>8455</team><id>735306</id><n>197</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>4</value></coordinates><elapsed>86</elapsed><player2>294859</player2><subtype>shot</subtype><player1>239259</player1><sortorder>1</sortorder><team>9831</team><id>5583784</id><n>403</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>13</value><value>3</value></coordinates><elapsed>89</elapsed><player2>94318</player2><subtype>shot</subtype><player1>239259</player1><sortorder>0</sortorder><team>9831</team><id>5583848</id><n>414</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>28</elapsed><player2>30618</player2><subtype>header</subtype><player1>51553</player1><sortorder>1</sortorder><team>8650</team><id>3029753</id><n>276</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>36</elapsed><player2>51553</player2><subtype>shot</subtype><player1>40636</player1><sortorder>3</sortorder><team>8650</team><id>3029820</id><n>297</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>52</elapsed><subtype>shot</subtype><player1>167634</player1><sortorder>4</sortorder><team>8472</team><id>3030011</id><n>314</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>89</elapsed><player2>51553</player2><subtype>shot</subtype><player1>40636</player1><sortorder>4</sortorder><team>8650</team><id>3030350</id><n>368</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>31</elapsed><player1>30729</player1><sortorder>0</sortorder><team>8564</team><id>463605</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>54</elapsed><player1>24854</player1><sortorder>0</sortorder><team>8551</team><id>464465</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>65</elapsed><player1>41044</player1><sortorder>0</sortorder><team>8564</team><id>464612</id><n>20</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>72</elapsed><player1>41092</player1><sortorder>0</sortorder><team>9827</team><id>2024838</id><n>19</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>279178</player1><sortorder>0</sortorder><team>9836</team><id>2024884</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>26112</player1><sortorder>0</sortorder><team>8592</team><id>2713024</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>5</elapsed><player2>190872</player2><subtype>shot</subtype><player1>46893</player1><sortorder>3</sortorder><team>8466</team><id>3320345</id><n>192</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>57</elapsed><subtype>shot</subtype><player1>39225</player1><sortorder>3</sortorder><team>8466</team><id>3321273</id><n>239</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>72</elapsed><player2>39225</player2><subtype>shot</subtype><player1>109491</player1><sortorder>4</sortorder><team>8466</team><id>3321545</id><n>248</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>85</elapsed><subtype>shot</subtype><player1>34261</player1><sortorder>1</sortorder><team>9850</team><id>3321776</id><n>260</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>86</elapsed><subtype>loose_ball</subtype><player1>32728</player1><sortorder>2</sortorder><team>9850</team><id>3321798</id><n>264</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>7</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>23792</player2><subtype>shot</subtype><player1>502421</player1><sortorder>25</sortorder><team>8466</team><id>3321983</id><n>270</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>23</elapsed><player2>24104</player2><subtype>shot</subtype><player1>33101</player1><sortorder>10</sortorder><team>9790</team><id>1813339</id><n>236</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>62</elapsed><player2>164385</player2><subtype>shot</subtype><player1>30987</player1><sortorder>10</sortorder><team>9790</team><id>1814139</id><n>277</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>23</elapsed><player2>108808</player2><player1>24507</player1><sortorder>0</sortorder><team>8564</team><id>3388739</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>894</event_incident_typefk><coordinates><value>15</value><value>5</value></coordinates><elapsed>43</elapsed><player2>49939</player2><subtype>indirect freekick</subtype><player1>38817</player1><sortorder>0</sortorder><team>9885</team><id>4316791</id><n>219</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>4</elapsed_plus><event_incident_typefk>6</event_incident_typefk><coordinates><value>17</value><value>6</value></coordinates><elapsed>90</elapsed><subtype>volley</subtype><player1>210278</player1><sortorder>9</sortorder><team>9885</team><id>4317376</id><n>499</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>54</elapsed><subtype>shot</subtype><player1>33635</player1><sortorder>3</sortorder><team>9906</team><id>2109775</id><n>276</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>38551</player2><subtype>shot</subtype><player1>75342</player1><sortorder>9</sortorder><team>8560</team><id>2110001</id><n>271</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>14</elapsed><player2>36784</player2><subtype>shot</subtype><player1>30655</player1><sortorder>2</sortorder><team>10189</team><id>1257490</id><n>163</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>54</elapsed><player2>26437</player2><subtype>header</subtype><player1>36784</player1><sortorder>0</sortorder><team>10189</team><id>1257565</id><n>199</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>81</elapsed><subtype>shot</subtype><player1>30655</player1><sortorder>1</sortorder><team>10189</team><id>1257605</id><n>212</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>61</elapsed><player1>38717</player1><sortorder>0</sortorder><team>9885</team><id>2653041</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>73</elapsed><player1>41890</player1><sortorder>0</sortorder><team>9885</team><id>2653051</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>16</elapsed><player1>24549</player1><sortorder>0</sortorder><team>8564</team><id>2320688</id><n>22</n><type>goal</type><goal_type>p</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>42</elapsed><player1>41475</player1><sortorder>0</sortorder><team>9857</team><id>2320767</id><n>26</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>77</elapsed><player1>24549</player1><sortorder>0</sortorder><team>8564</team><id>2320876</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>85</elapsed><player1>24549</player1><sortorder>0</sortorder><team>8564</team><id>2320877</id><n>31</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player1>102699</player1><sortorder>0</sortorder><team>9873</team><id>2505985</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>33778</player1><sortorder>0</sortorder><team>8305</team><id>1738390</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>76</elapsed><player1>33778</player1><sortorder>0</sortorder><team>8305</team><id>1738575</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>30</value><value>56</value></coordinates><elapsed>17</elapsed><subtype>distance</subtype><player1>210276</player1><sortorder>1</sortorder><team>8654</team><id>5417526</id><n>261</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>130</event_incident_typefk><coordinates><value>17</value><value>14</value></coordinates><elapsed>45</elapsed><subtype>direct_freekick</subtype><player1>30613</player1><sortorder>7</sortorder><team>8455</team><id>5418301</id><n>602</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>30</value><value>63</value></coordinates><elapsed>62</elapsed><player2>25496</player2><subtype>shot</subtype><player1>47382</player1><sortorder>0</sortorder><team>8654</team><id>5419075</id><n>841</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>89</elapsed><player1>30613</player1><sortorder>0</sortorder><team>8455</team><id>5419582</id><n>1181</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>29</elapsed><player2>23794</player2><subtype>shot</subtype><player1>24773</player1><sortorder>1</sortorder><team>10194</team><id>834896</id><n>209</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>62</elapsed><player2>23225</player2><subtype>distance</subtype><player1>23333</player1><sortorder>1</sortorder><team>8667</team><id>835394</id><n>231</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>131</event_incident_typefk><elapsed>90</elapsed><subtype>loose_ball</subtype><player1>37798</player1><sortorder>1</sortorder><team>8667</team><id>835814</id><n>255</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>16</value><value>58</value></coordinates><elapsed>48</elapsed><player2>46243</player2><subtype>shot</subtype><player1>131991</player1><sortorder>2</sortorder><team>7794</team><id>5286888</id><n>824</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>36</elapsed><player2>303926</player2><player1>212819</player1><sortorder>0</sortorder><team>10228</team><id>4009909</id><n>6</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player2>363369</player2><player1>212819</player1><sortorder>0</sortorder><team>10228</team><id>4010363</id><n>14</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>81</elapsed><player2>34418</player2><subtype>distance</subtype><player1>26181</player1><sortorder>3</sortorder><team>9825</team><id>1015495</id><n>298</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>25075</player2><subtype>shot</subtype><player1>37552</player1><sortorder>1</sortorder><team>8658</team><id>1015658</id><n>345</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>7</elapsed><player1>75194</player1><sortorder>0</sortorder><team>8558</team><id>576693</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>26</elapsed><player1>37506</player1><sortorder>0</sortorder><team>8305</team><id>576818</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>2</elapsed><player1>212867</player1><sortorder>0</sortorder><team>9790</team><id>2367528</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>46</elapsed><player1>163670</player1><sortorder>0</sortorder><team>9789</team><id>2368152</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player1>39847</player1><sortorder>0</sortorder><team>9790</team><id>2368269</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>59</elapsed><player1>212867</player1><sortorder>0</sortorder><team>9790</team><id>2368339</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>60</elapsed><player1>163670</player1><sortorder>0</sortorder><team>9789</team><id>2368341</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>43</elapsed><player2>34036</player2><subtype>header</subtype><player1>25984</player1><sortorder>2</sortorder><team>8650</team><id>2504606</id><n>275</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>38</elapsed><player2>23783</player2><subtype>header</subtype><player1>51553</player1><sortorder>3</sortorder><team>8559</team><id>1522832</id><n>389</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><elapsed>47</elapsed><subtype>saved_back_into_play</subtype><player1>23934</player1><sortorder>0</sortorder><team>8559</team><id>1523018</id><n>144</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>48</elapsed><player2>30613</player2><subtype>shot</subtype><player1>30843</player1><sortorder>1</sortorder><team>9825</team><id>1523037</id><n>404</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>90</elapsed><player2>24372</player2><subtype>header</subtype><player1>11576</player1><sortorder>1</sortorder><team>8559</team><id>1523562</id><n>384</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>7</elapsed><player1>12245</player1><sortorder>0</sortorder><team>8350</team><id>1552196</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>9</elapsed><player1>103089</player1><sortorder>0</sortorder><team>8350</team><id>1552197</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>30</elapsed><player1>36389</player1><sortorder>0</sortorder><team>8350</team><id>1552349</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>43</elapsed><player1>30706</player1><sortorder>0</sortorder><team>8697</team><id>1552604</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player1>110148</player1><sortorder>0</sortorder><team>8697</team><id>1552758</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>52</elapsed><player1>30706</player1><sortorder>0</sortorder><team>8697</team><id>1552759</id><n>11</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>37</elapsed><player1>242709</player1><sortorder>0</sortorder><team>8226</team><id>1622143</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>38</elapsed><player1>110148</player1><sortorder>0</sortorder><team>8697</team><id>1622161</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>83</elapsed><player1>30827</player1><sortorder>0</sortorder><team>8697</team><id>1622600</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>68</elapsed><subtype>saved_back_into_play</subtype><player1>40719</player1><sortorder>0</sortorder><team>10268</team><id>4504397</id><n>306</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>25</value><value>4</value></coordinates><elapsed>4</elapsed><subtype>shot</subtype><player1>50047</player1><sortorder>4</sortorder><team>9825</team><id>5446331</id><n>40</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>9</value></coordinates><elapsed>38</elapsed><player2>50047</player2><subtype>shot</subtype><player1>604785</player1><sortorder>2</sortorder><team>9825</team><id>5447251</id><n>271</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>288</event_incident_typefk><coordinates><value>28</value><value>10</value></coordinates><elapsed>48</elapsed><subtype>deflected</subtype><player1>427438</player1><sortorder>2</sortorder><team>9825</team><id>5447927</id><n>357</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>21</value><value>3</value></coordinates><elapsed>90</elapsed><player2>242094</player2><subtype>tap_in</subtype><player1>31013</player1><sortorder>2</sortorder><team>9825</team><id>5449073</id><n>569</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>16</elapsed><subtype>shot</subtype><player1>144993</player1><sortorder>1</sortorder><team>9789</team><id>1901493</id><n>167</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>31</elapsed><player2>43319</player2><subtype>shot</subtype><player1>94652</player1><sortorder>1</sortorder><team>9789</team><id>1901523</id><n>172</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>55</elapsed><player2>94652</player2><subtype>shot</subtype><player1>144993</player1><sortorder>1</sortorder><team>9789</team><id>1901659</id><n>193</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>63</elapsed><player2>26489</player2><subtype>shot</subtype><player1>37357</player1><sortorder>1</sortorder><team>8226</team><id>1901685</id><n>204</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>2</elapsed><player2>30937</player2><subtype>shot</subtype><player1>31199</player1><sortorder>3</sortorder><team>8178</team><id>831871</id><n>179</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>6</elapsed><player2>30937</player2><subtype>header</subtype><player1>58354</player1><sortorder>4</sortorder><team>8178</team><id>831887</id><n>184</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>11</elapsed><subtype>distance</subtype><player1>95078</player1><sortorder>2</sortorder><team>8178</team><id>831903</id><n>189</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>86</elapsed><player2>58354</player2><subtype>shot</subtype><player1>37373</player1><sortorder>3</sortorder><team>8178</team><id>832075</id><n>257</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>27</elapsed><player1>33022</player1><sortorder>1</sortorder><team>10281</team><id>1088633</id><n>216</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>31</elapsed><player2>30981</player2><subtype>shot</subtype><player1>150250</player1><sortorder>6</sortorder><team>8634</team><id>1088687</id><n>214</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>62</elapsed><player2>36615</player2><subtype>shot</subtype><player1>30981</player1><sortorder>2</sortorder><team>8634</team><id>1089132</id><n>239</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>76</elapsed><player2>36615</player2><subtype>shot</subtype><player1>30981</player1><sortorder>3</sortorder><team>8634</team><id>1089308</id><n>250</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>24</elapsed><player1>36615</player1><sortorder>0</sortorder><team>8456</team><id>3991434</id><n>67</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>20</value><value>3</value></coordinates><elapsed>51</elapsed><player2>23837</player2><subtype>header</subtype><player1>24157</player1><sortorder>2</sortorder><team>9826</team><id>3781859</id><n>275</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>22</value><value>4</value></coordinates><elapsed>55</elapsed><player2>35345</player2><subtype>header</subtype><player1>8985</player1><sortorder>1</sortorder><team>9826</team><id>3781973</id><n>279</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>25</elapsed><player1>264842</player1><sortorder>0</sortorder><team>8686</team><id>3209165</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>30</elapsed><player1>30714</player1><sortorder>0</sortorder><team>8686</team><id>3209180</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>43</elapsed><player1>34305</player1><sortorder>0</sortorder><team>8686</team><id>3209221</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>52</elapsed><player1>46875</player1><sortorder>0</sortorder><team>8686</team><id>3209254</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>30</value><value>66</value></coordinates><elapsed>21</elapsed><player1>30276</player1><sortorder>1</sortorder><team>8581</team><id>5262315</id><n>245</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>61</value></coordinates><elapsed>90</elapsed><player2>30981</player2><subtype>shot</subtype><player1>40636</player1><sortorder>6</sortorder><team>8634</team><id>5262973</id><n>497</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>37</elapsed><player1>32776</player1><sortorder>0</sortorder><team>8588</team><id>1398367</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>39</elapsed><player1>111787</player1><sortorder>0</sortorder><team>9873</team><id>1398368</id><n>29</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>69</elapsed><player1>26112</player1><sortorder>0</sortorder><team>8592</team><id>1488003</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>14</value><value>62</value></coordinates><elapsed>6</elapsed><player2>175947</player2><subtype>shot</subtype><player1>33468</player1><sortorder>1</sortorder><team>8659</team><id>5475087</id><n>41</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>19</elapsed><player1>37412</player1><sortorder>1</sortorder><team>8456</team><id>5475316</id><n>108</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>19</value><value>5</value></coordinates><elapsed>66</elapsed><subtype>shot</subtype><player1>26181</player1><sortorder>3</sortorder><team>8456</team><id>5476358</id><n>327</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>18</elapsed><player1>212867</player1><sortorder>0</sortorder><team>9790</team><id>2761701</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>35</elapsed><player1>33338</player1><sortorder>0</sortorder><team>9790</team><id>2761777</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>60</elapsed><player1>10967</player1><sortorder>0</sortorder><team>9790</team><id>2761891</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>61</elapsed><player1>212893</player1><sortorder>0</sortorder><team>8226</team><id>2761898</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>88</elapsed><player1>79982</player1><sortorder>0</sortorder><team>9790</team><id>2762038</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>2</elapsed><subtype>shot</subtype><player1>35561</player1><sortorder>5</sortorder><team>10233</team><id>834891</id><n>193</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>18</elapsed><subtype>loose_ball</subtype><player1>35561</player1><sortorder>1</sortorder><team>10233</team><id>835030</id><n>210</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>35</elapsed><player2>30991</player2><subtype>shot</subtype><player1>41413</player1><sortorder>1</sortorder><team>10233</team><id>835205</id><n>229</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>304</event_incident_typefk><elapsed>41</elapsed><subtype>loose_ball</subtype><player1>24854</player1><sortorder>2</sortorder><team>8551</team><id>835271</id><n>58</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>80</elapsed><subtype>shot</subtype><player1>37520</player1><sortorder>3</sortorder><team>8551</team><id>836052</id><n>270</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>82</elapsed><subtype>shot</subtype><player1>30284</player1><sortorder>4</sortorder><team>8551</team><id>836090</id><n>274</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>41758</player2><subtype>shot</subtype><player1>27657</player1><sortorder>2</sortorder><team>10233</team><id>836245</id><n>291</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>21</value><value>66</value></coordinates><elapsed>5</elapsed><player2>77690</player2><subtype>volley</subtype><player1>30922</player1><sortorder>1</sortorder><team>8668</team><id>4037601</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>6</value></coordinates><elapsed>34</elapsed><player2>24899</player2><subtype>shot</subtype><player1>46700</player1><sortorder>6</sortorder><team>10261</team><id>4038139</id><n>159</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>9</value></coordinates><elapsed>51</elapsed><player2>38373</player2><subtype>shot</subtype><player1>479020</player1><sortorder>4</sortorder><team>10261</team><id>4038293</id><n>203</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>25</value><value>6</value></coordinates><elapsed>68</elapsed><subtype>shot</subtype><player1>160243</player1><sortorder>3</sortorder><team>10261</team><id>4038355</id><n>261</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>61</value></coordinates><elapsed>84</elapsed><player2>24846</player2><subtype>shot</subtype><player1>26151</player1><sortorder>1</sortorder><team>8668</team><id>4038401</id><n>358</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>21</elapsed><player1>30728</player1><sortorder>0</sortorder><team>10278</team><id>1192229</id><n>263</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>38</elapsed><subtype>shot</subtype><player1>30728</player1><sortorder>9</sortorder><team>10278</team><id>1192304</id><n>285</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>20</value><value>63</value></coordinates><elapsed>17</elapsed><player2>26107</player2><subtype>header</subtype><player1>172615</player1><sortorder>2</sortorder><team>8639</team><id>4188173</id><n>92</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>21</value><value>7</value></coordinates><elapsed>22</elapsed><player2>40758</player2><subtype>header</subtype><player1>79246</player1><sortorder>2</sortorder><team>7794</team><id>4188252</id><n>125</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>33</value><value>12</value></coordinates><elapsed>40</elapsed><player2>40758</player2><subtype>distance</subtype><player1>131991</player1><sortorder>2</sortorder><team>7794</team><id>4188452</id><n>250</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>35</value><value>61</value></coordinates><elapsed>21</elapsed><player2>265924</player2><subtype>shot</subtype><player1>42601</player1><sortorder>2</sortorder><team>9880</team><id>4096953</id><n>135</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>22</value><value>11</value></coordinates><elapsed>76</elapsed><player1>42420</player1><sortorder>2</sortorder><team>9880</team><id>4097934</id><n>506</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><coordinates><value>20</value><value>65</value></coordinates><elapsed>90</elapsed><subtype>volley</subtype><player1>237623</player1><sortorder>1</sortorder><team>9880</team><id>4098119</id><n>614</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>9</value></coordinates><elapsed>90</elapsed><player2>26264</player2><subtype>shot</subtype><player1>131995</player1><sortorder>1</sortorder><team>9837</team><id>3873042</id><n>303</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>49</elapsed><player1>39534</player1><sortorder>0</sortorder><team>9882</team><id>415597</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>51</elapsed><player1>24409</player1><sortorder>0</sortorder><team>8533</team><id>415598</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>29</elapsed><player1>34000</player1><sortorder>0</sortorder><team>9882</team><id>2520582</id><n>23</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player1>113702</player1><sortorder>0</sortorder><team>8530</team><id>2520751</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>65</elapsed><player1>37273</player1><sortorder>0</sortorder><team>8530</team><id>2520752</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>166509</player1><sortorder>0</sortorder><team>8530</team><id>2520807</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>46708</player1><sortorder>0</sortorder><team>4087</team><id>1917839</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>47</elapsed><player1>37429</player1><sortorder>0</sortorder><team>9847</team><id>1917948</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>79</elapsed><player1>37429</player1><sortorder>0</sortorder><team>9847</team><id>1918135</id><n>28</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player1>26392</player1><sortorder>0</sortorder><team>9847</team><id>1918171</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>13</elapsed><player1>39644</player1><sortorder>0</sortorder><team>8600</team><id>690072</id><n>23</n><type>goal</type><goal_type>p</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>33</elapsed><player1>109298</player1><sortorder>0</sortorder><team>8600</team><id>690234</id><n>19</n><type>goal</type><goal_type>o</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>44</elapsed><player1>32748</player1><sortorder>0</sortorder><team>9882</team><id>690338</id><n>22</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>61</elapsed><player1>41542</player1><sortorder>0</sortorder><team>8600</team><id>690479</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>19</value><value>4</value></coordinates><elapsed>70</elapsed><player2>96619</player2><subtype>header</subtype><player1>182224</player1><sortorder>3</sortorder><team>8315</team><id>4098888</id><n>414</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>26</value><value>68</value></coordinates><elapsed>78</elapsed><player2>41470</player2><subtype>tap_in</subtype><player1>46808</player1><sortorder>3</sortorder><team>9864</team><id>4098978</id><n>451</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>26</elapsed><player2>24208</player2><subtype>distance</subtype><player1>37459</player1><sortorder>1</sortorder><team>8456</team><id>1616921</id><n>293</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>38</elapsed><player2>38807</player2><subtype>distance</subtype><player1>23782</player1><sortorder>0</sortorder><team>8456</team><id>1617007</id><n>307</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>39</elapsed><player2>33633</player2><subtype>volley</subtype><player1>30753</player1><sortorder>4</sortorder><team>8559</team><id>1617027</id><n>310</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>47</elapsed><player2>38807</player2><subtype>shot</subtype><player1>15403</player1><sortorder>2</sortorder><team>8456</team><id>1617203</id><n>330</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>63</elapsed><player2>33633</player2><subtype>header</subtype><player1>23934</player1><sortorder>1</sortorder><team>8559</team><id>1617338</id><n>352</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>59</elapsed><player1>49939</player1><sortorder>0</sortorder><team>9885</team><id>2749578</id><n>17</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>27</value><value>3</value></coordinates><elapsed>15</elapsed><player2>194660</player2><subtype>header</subtype><player1>151079</player1><sortorder>4</sortorder><team>9783</team><id>5288180</id><n>87</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>25</value><value>65</value></coordinates><elapsed>20</elapsed><player2>39719</player2><subtype>header</subtype><player1>722766</player1><sortorder>1</sortorder><team>8603</team><id>5288218</id><n>119</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>894</event_incident_typefk><coordinates><value>14</value><value>57</value></coordinates><elapsed>37</elapsed><player2>96652</player2><subtype>indirect freekick</subtype><player1>39719</player1><sortorder>0</sortorder><team>8603</team><id>5288330</id><n>492</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>28</value><value>3</value></coordinates><elapsed>51</elapsed><player2>194660</player2><subtype>shot</subtype><player1>279173</player1><sortorder>3</sortorder><team>9783</team><id>5288407</id><n>268</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><coordinates><value>12</value><value>5</value></coordinates><elapsed>76</elapsed><subtype>shot</subtype><player1>194660</player1><sortorder>2</sortorder><team>9783</team><id>5288514</id><n>393</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>11</elapsed><player1>26618</player1><sortorder>3</sortorder><team>8406</team><id>3867295</id><n>32</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><coordinates><value>26</value><value>10</value></coordinates><elapsed>66</elapsed><player2>147735</player2><subtype>deflected</subtype><player1>35997</player1><sortorder>4</sortorder><team>8406</team><id>3868731</id><n>229</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>23</elapsed><player2>30626</player2><subtype>shot</subtype><player1>33639</player1><sortorder>6</sortorder><team>8634</team><id>577480</id><n>221</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>40</elapsed><player2>30981</player2><subtype>shot</subtype><player1>33639</player1><sortorder>4</sortorder><team>8634</team><id>577551</id><n>239</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>66</elapsed><subtype>shot</subtype><player1>33988</player1><sortorder>2</sortorder><team>8634</team><id>577627</id><n>260</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><elapsed>69</elapsed><subtype>volley</subtype><player1>74770</player1><sortorder>0</sortorder><team>9869</team><id>577631</id><n>263</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>2</elapsed><player1>39844</player1><sortorder>0</sortorder><team>9911</team><id>463267</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>64</elapsed><player1>35411</player1><sortorder>0</sortorder><team>8226</team><id>464023</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>70</elapsed><player1>36084</player1><sortorder>0</sortorder><team>8226</team><id>464187</id><n>26</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>71</elapsed><player1>78990</player1><sortorder>0</sortorder><team>8226</team><id>464252</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>54</elapsed><player1>169193</player1><sortorder>0</sortorder><team>9748</team><id>1832543</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>28</value><value>9</value></coordinates><elapsed>24</elapsed><player2>484858</player2><subtype>shot</subtype><player1>359461</player1><sortorder>6</sortorder><team>8674</team><id>4912298</id><n>193</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>21</value><value>68</value></coordinates><elapsed>85</elapsed><player1>46079</player1><sortorder>2</sortorder><team>8674</team><id>4913928</id><n>959</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>16</value><value>8</value></coordinates><elapsed>86</elapsed><player2>46079</player2><subtype>volley</subtype><player1>143512</player1><sortorder>8</sortorder><team>8674</team><id>4913950</id><n>955</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>30</elapsed><subtype>shot</subtype><player1>150250</player1><sortorder>1</sortorder><team>8634</team><id>934040</id><n>232</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>12</elapsed><player1>30496</player1><sortorder>0</sortorder><team>9790</team><id>421983</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><elapsed>22</elapsed><subtype>saved_back_into_play</subtype><player1>37169</player1><sortorder>0</sortorder><team>8654</team><id>564268</id><n>65</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>33</elapsed><player2>34543</player2><subtype>shot</subtype><player1>27665</player1><sortorder>2</sortorder><team>8654</team><id>564432</id><n>309</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>391</event_incident_typefk><elapsed>51</elapsed><player2>27665</player2><subtype>loose_ball</subtype><player1>34543</player1><sortorder>1</sortorder><team>8654</team><id>564935</id><n>331</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>31</value><value>7</value></coordinates><elapsed>6</elapsed><player2>498033</player2><subtype>shot</subtype><player1>88986</player1><sortorder>0</sortorder><team>8558</team><id>5041603</id><n>83</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><coordinates><value>29</value><value>7</value></coordinates><elapsed>20</elapsed><subtype>volley</subtype><player1>88986</player1><sortorder>1</sortorder><team>8558</team><id>5041798</id><n>214</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>28</value><value>64</value></coordinates><elapsed>11</elapsed><player2>46469</player2><subtype>volley</subtype><player1>36378</player1><sortorder>3</sortorder><team>9825</team><id>4131937</id><n>76</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>18</value><value>2</value></coordinates><elapsed>56</elapsed><subtype>shot</subtype><player1>194165</player1><sortorder>4</sortorder><team>8586</team><id>4132248</id><n>334</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>26</value><value>6</value></coordinates><elapsed>86</elapsed><player2>500520</player2><subtype>header</subtype><player1>194165</player1><sortorder>1</sortorder><team>8586</team><id>4132407</id><n>496</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>174850</player2><subtype>shot</subtype><player1>114971</player1><sortorder>1</sortorder><team>8586</team><id>3012649</id><n>290</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>167</event_incident_typefk><coordinates><value>21</value><value>11</value></coordinates><elapsed>20</elapsed><subtype>bicycle_kick</subtype><player1>30924</player1><sortorder>1</sortorder><team>9823</team><id>5446079</id><n>202</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>npm</comment><event_incident_typefk>159</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>14</elapsed><subtype>saved</subtype><player1>24171</player1><sortorder>0</sortorder><team>8659</team><id>4703142</id><n>60</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>60</value></coordinates><elapsed>20</elapsed><player2>107417</player2><subtype>shot</subtype><player1>150250</player1><sortorder>2</sortorder><team>8455</team><id>4703241</id><n>101</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>649</event_incident_typefk><coordinates><value>24</value><value>67</value></coordinates><elapsed>30</elapsed><subtype>tap_in</subtype><player1>19243</player1><sortorder>3</sortorder><team>8455</team><id>4703390</id><n>239</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>21</value><value>9</value></coordinates><elapsed>36</elapsed><player2>51545</player2><subtype>volley</subtype><player1>24171</player1><sortorder>1</sortorder><team>8659</team><id>4703481</id><n>175</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>61</value></coordinates><elapsed>43</elapsed><player2>19243</player2><subtype>shot</subtype><player1>72541</player1><sortorder>1</sortorder><team>8455</team><id>4703598</id><n>220</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>21</value><value>7</value></coordinates><elapsed>59</elapsed><player2>172841</player2><subtype>header</subtype><player1>24171</player1><sortorder>1</sortorder><team>8659</team><id>4703963</id><n>308</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>9</elapsed><player1>50047</player1><sortorder>0</sortorder><team>8634</team><id>3100657</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>48</elapsed><player1>192064</player1><sortorder>0</sortorder><team>9910</team><id>3100764</id><n>23</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>54</elapsed><player1>30613</player1><sortorder>0</sortorder><team>8634</team><id>3100769</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>64</value></coordinates><elapsed>33</elapsed><player2>58351</player2><subtype>shot</subtype><player1>25819</player1><sortorder>6</sortorder><team>9788</team><id>5341244</id><n>316</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>25</value><value>5</value></coordinates><elapsed>50</elapsed><player2>26618</player2><subtype>header</subtype><player1>129918</player1><sortorder>2</sortorder><team>8406</team><id>5342010</id><n>380</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>21</value><value>7</value></coordinates><elapsed>54</elapsed><subtype>shot</subtype><player1>150922</player1><sortorder>1</sortorder><team>8406</team><id>5342077</id><n>382</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>63</value></coordinates><elapsed>56</elapsed><player2>517346</player2><subtype>shot</subtype><player1>37357</player1><sortorder>0</sortorder><team>9788</team><id>5342127</id><n>401</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>27</elapsed><player1>129391</player1><sortorder>0</sortorder><team>9847</team><id>1977211</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>29</elapsed><player1>33782</player1><sortorder>0</sortorder><team>9847</team><id>1977212</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>42</elapsed><player1>33420</player1><sortorder>0</sortorder><team>8576</team><id>1977266</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>86</elapsed><player1>37554</player1><sortorder>0</sortorder><team>9847</team><id>1977760</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>37429</player1><sortorder>0</sortorder><team>9847</team><id>1977852</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>5</elapsed><player1>161420</player1><sortorder>0</sortorder><team>9853</team><id>1548739</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>15</elapsed><player1>26130</player1><sortorder>0</sortorder><team>8639</team><id>1548808</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>68</elapsed><player1>32575</player1><sortorder>0</sortorder><team>8639</team><id>1549265</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>164684</player1><sortorder>0</sortorder><team>9829</team><id>3266348</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>77</elapsed><player2>239259</player2><player1>164684</player1><sortorder>0</sortorder><team>9829</team><id>3266525</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>40</elapsed><player2>45744</player2><subtype>shot</subtype><player1>22543</player1><sortorder>2</sortorder><team>9906</team><id>1875145</id><n>217</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>51</elapsed><player1>22543</player1><sortorder>1</sortorder><team>9906</team><id>1875211</id><n>224</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>80</elapsed><player2>41167</player2><subtype>shot</subtype><player1>31235</player1><sortorder>1</sortorder><team>9906</team><id>1875292</id><n>258</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>23</elapsed><player1>36084</player1><sortorder>0</sortorder><team>8226</team><id>832232</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>52</elapsed><player1>39902</player1><sortorder>0</sortorder><team>8721</team><id>832759</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>57</elapsed><player1>30445</player1><sortorder>0</sortorder><team>8721</team><id>832827</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>64</value></coordinates><elapsed>76</elapsed><player2>35345</player2><subtype>header</subtype><player1>23837</player1><sortorder>1</sortorder><team>9826</team><id>5094327</id><n>404</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>3</value></coordinates><elapsed>81</elapsed><player2>23782</player2><subtype>shot</subtype><player1>181276</player1><sortorder>4</sortorder><team>8668</team><id>5094341</id><n>510</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>30</value><value>62</value></coordinates><elapsed>14</elapsed><player2>150922</player2><subtype>shot</subtype><player1>201888</player1><sortorder>2</sortorder><team>8406</team><id>5318083</id><n>131</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>4</elapsed><player1>35421</player1><sortorder>0</sortorder><team>8524</team><id>1666859</id><n>24</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>25</elapsed><player1>41605</player1><sortorder>0</sortorder><team>9888</team><id>1667345</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player1>35421</player1><sortorder>0</sortorder><team>8524</team><id>1667879</id><n>28</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>18</elapsed><player1>210692</player1><sortorder>0</sortorder><team>4087</team><id>2475160</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>53</elapsed><player1>46261</player1><sortorder>0</sortorder><team>4087</team><id>2475225</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>73</elapsed><player1>46708</player1><sortorder>0</sortorder><team>4087</team><id>2475256</id><n>20</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>7</elapsed><player2>39334</player2><subtype>shot</subtype><player1>37767</player1><sortorder>11</sortorder><team>8543</team><id>1447307</id><n>204</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>18</elapsed><player2>39334</player2><subtype>header</subtype><player1>37767</player1><sortorder>12</sortorder><team>8543</team><id>1447353</id><n>202</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player1>22543</player1><sortorder>0</sortorder><team>9906</team><id>2405236</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>37</elapsed><player1>30646</player1><sortorder>0</sortorder><team>9864</team><id>2405255</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>90</elapsed><player1>41707</player1><sortorder>0</sortorder><team>9864</team><id>2405321</id><n>31</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>75310</player1><sortorder>0</sortorder><team>8302</team><id>2140999</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>77</elapsed><player1>184536</player1><sortorder>0</sortorder><team>8558</team><id>2141370</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>npm</comment><event_incident_typefk>159</event_incident_typefk><elapsed>51</elapsed><subtype>saved</subtype><player1>39109</player1><sortorder>0</sortorder><team>8650</team><id>1852013</id><n>189</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>7</elapsed><player1>26144</player1><sortorder>0</sortorder><team>9827</team><id>1874245</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>11</elapsed><player1>41238</player1><sortorder>0</sortorder><team>9827</team><id>1874305</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>54</elapsed><player1>102699</player1><sortorder>0</sortorder><team>9873</team><id>1874619</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>39</elapsed><subtype>shot</subtype><player1>16351</player1><sortorder>2</sortorder><team>8543</team><id>880215</id><n>306</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>16</elapsed><subtype>shot</subtype><player1>30843</player1><sortorder>2</sortorder><team>10260</team><id>2518838</id><n>257</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>19</elapsed><player2>34944</player2><subtype>shot</subtype><player1>160713</player1><sortorder>3</sortorder><team>10260</team><id>2518874</id><n>262</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><elapsed>59</elapsed><player2>30843</player2><subtype>tap_in</subtype><player1>30829</player1><sortorder>2</sortorder><team>10260</team><id>2519355</id><n>314</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>72</elapsed><player2>33468</player2><subtype>header</subtype><player1>24157</player1><sortorder>4</sortorder><team>8472</team><id>2519515</id><n>334</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>76</elapsed><player1>140982</player1><sortorder>0</sortorder><team>9837</team><id>2936331</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>64</value></coordinates><elapsed>17</elapsed><player2>179845</player2><subtype>header</subtype><player1>26353</player1><sortorder>3</sortorder><team>9853</team><id>4660293</id><n>87</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>26</value><value>17</value></coordinates><elapsed>27</elapsed><subtype>direct_freekick</subtype><player1>169865</player1><sortorder>0</sortorder><team>9941</team><id>4660416</id><n>114</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>11</value><value>14</value></coordinates><elapsed>53</elapsed><subtype>direct_freekick</subtype><player1>210184</player1><sortorder>0</sortorder><team>9941</team><id>4660798</id><n>197</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><elapsed>22</elapsed><subtype>shot</subtype><player1>27430</player1><sortorder>0</sortorder><team>10260</team><id>576782</id><n>100</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>62</elapsed><player2>30373</player2><subtype>shot</subtype><player1>24154</player1><sortorder>4</sortorder><team>10260</team><id>577127</id><n>352</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>60</value></coordinates><elapsed>57</elapsed><player2>26419</player2><subtype>shot</subtype><player1>215299</player1><sortorder>1</sortorder><team>9847</team><id>4651414</id><n>271</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>26</elapsed><player1>35411</player1><sortorder>0</sortorder><team>8226</team><id>689051</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>30</elapsed><player1>30704</player1><sortorder>0</sortorder><team>10189</team><id>689065</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player1>26437</player1><sortorder>0</sortorder><team>10189</team><id>689081</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>49</elapsed><player1>78990</player1><sortorder>0</sortorder><team>8226</team><id>689179</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>89</elapsed><player1>78990</player1><sortorder>0</sortorder><team>8226</team><id>689403</id><n>26</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>26</elapsed><player2>41468</player2><subtype>header</subtype><player1>128864</player1><sortorder>2</sortorder><team>8455</team><id>2716353</id><n>269</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><elapsed>52</elapsed><player2>40636</player2><subtype>tap_in</subtype><player1>51553</player1><sortorder>1</sortorder><team>8650</team><id>2716646</id><n>295</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>57</elapsed><player1>107417</player1><sortorder>0</sortorder><team>8455</team><id>2716692</id><n>302</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>7</elapsed_plus><event_incident_typefk>406</event_incident_typefk><elapsed>90</elapsed><player2>51553</player2><subtype>header</subtype><player1>40636</player1><sortorder>2</sortorder><team>8650</team><id>2717043</id><n>345</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>60</elapsed><player2>3520</player2><subtype>shot</subtype><player1>30843</player1><sortorder>5</sortorder><team>9825</team><id>1856810</id><n>293</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>10</elapsed><player2>41061</player2><subtype>header</subtype><player1>30922</player1><sortorder>111</sortorder><team>8528</team><id>2399861</id><n>212</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>11</elapsed><player2>36012</player2><subtype>header</subtype><player1>8922</player1><sortorder>0</sortorder><team>8668</team><id>2399874</id><n>214</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>23</elapsed><player2>30922</player2><subtype>shot</subtype><player1>49825</player1><sortorder>222</sortorder><team>8528</team><id>2400010</id><n>232</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>87</elapsed><player1>24846</player1><sortorder>0</sortorder><team>8668</team><id>2400782</id><n>305</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>83</elapsed><player1>36130</player1><sortorder>0</sortorder><team>10281</team><id>2459767</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>76</elapsed><player2>24656</player2><subtype>distance</subtype><player1>30956</player1><sortorder>0</sortorder><team>8586</team><id>2515892</id><n>255</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>90</elapsed><player2>77690</player2><subtype>header</subtype><player1>36012</player1><sortorder>0</sortorder><team>8668</team><id>2515958</id><n>291</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>721</event_incident_typefk><elapsed>90</elapsed><player2>186975</player2><subtype>tap_in</subtype><player1>8922</player1><sortorder>1</sortorder><team>8668</team><id>2515963</id><n>276</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>61</value></coordinates><elapsed>36</elapsed><player2>183185</player2><subtype>shot</subtype><player1>42479</player1><sortorder>5</sortorder><team>10205</team><id>5147520</id><n>172</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>4</value></coordinates><elapsed>48</elapsed><player2>194660</player2><subtype>shot</subtype><player1>198566</player1><sortorder>2</sortorder><team>9783</team><id>5147598</id><n>233</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><elapsed_plus>5</elapsed_plus><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>90</elapsed><player1>42479</player1><sortorder>14</sortorder><team>10205</team><id>5147841</id><n>461</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>13</value><value>13</value></coordinates><elapsed>43</elapsed><player2>42860</player2><subtype>distance</subtype><player1>617044</player1><sortorder>3</sortorder><team>8697</team><id>5471767</id><n>319</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>26</value><value>65</value></coordinates><elapsed>53</elapsed><player2>150922</player2><subtype>header</subtype><player1>129918</player1><sortorder>0</sortorder><team>8406</team><id>5472616</id><n>571</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>67</value></coordinates><elapsed>87</elapsed><player2>37319</player2><subtype>shot</subtype><player1>245526</player1><sortorder>1</sortorder><team>8406</team><id>5473598</id><n>635</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>npm</comment><event_incident_typefk>23</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>32</elapsed><subtype>post</subtype><player1>248154</player1><sortorder>0</sortorder><team>8526</team><id>5105863</id><n>225</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>29</value><value>64</value></coordinates><elapsed>32</elapsed><subtype>shot</subtype><player1>32593</player1><sortorder>1</sortorder><team>8526</team><id>5105867</id><n>333</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>24</value><value>5</value></coordinates><elapsed>34</elapsed><player2>360559</player2><subtype>volley</subtype><player1>503659</player1><sortorder>2</sortorder><team>8611</team><id>5105900</id><n>246</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>9</value></coordinates><elapsed>90</elapsed><player2>188533</player2><subtype>shot</subtype><player1>360559</player1><sortorder>10</sortorder><team>8611</team><id>5106763</id><n>621</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>60</elapsed><player1>33817</player1><sortorder>0</sortorder><team>8551</team><id>2428104</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>27671</player1><sortorder>0</sortorder><team>8524</team><id>2428143</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>83</elapsed><player1>127460</player1><sortorder>0</sortorder><team>8524</team><id>2428251</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>14</elapsed><player2>23931</player2><subtype>header</subtype><player1>23934</player1><sortorder>5</sortorder><team>8559</team><id>413379</id><n>341</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>26</elapsed><player2>36410</player2><subtype>shot</subtype><player1>30935</player1><sortorder>1</sortorder><team>9825</team><id>413454</id><n>356</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>27</elapsed><player2>39297</player2><subtype>shot</subtype><player1>36410</player1><sortorder>1</sortorder><team>9825</team><id>413456</id><n>357</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>87</elapsed><player2>30960</player2><subtype>shot</subtype><player1>39297</player1><sortorder>1</sortorder><team>9825</team><id>413777</id><n>441</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>10</elapsed><player2>200630</player2><subtype>header</subtype><player1>33856</player1><sortorder>2</sortorder><team>8661</team><id>1840238</id><n>312</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><elapsed>28</elapsed><player2>75619</player2><subtype>deflected</subtype><player1>167027</player1><sortorder>6</sortorder><team>8305</team><id>1840381</id><n>342</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><elapsed>44</elapsed><player2>150770</player2><subtype>tap_in</subtype><player1>167027</player1><sortorder>0</sortorder><team>8305</team><id>1840554</id><n>366</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>108568</player1><sortorder>0</sortorder><team>9906</team><id>649367</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player1>38460</player1><sortorder>0</sortorder><team>9906</team><id>649407</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>30663</player1><sortorder>0</sortorder><team>9906</team><id>649468</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>69</elapsed><player1>41360</player1><sortorder>0</sortorder><team>10249</team><id>2063316</id><n>18</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>77</elapsed><player1>242094</player1><sortorder>0</sortorder><team>8689</team><id>2063413</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>78</elapsed><player1>46469</player1><sortorder>0</sortorder><team>10249</team><id>2063414</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>23</elapsed><player1>75447</player1><sortorder>0</sortorder><team>8721</team><id>1453092</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>200962</player1><sortorder>0</sortorder><team>8165</team><id>1453131</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>40093</player1><sortorder>0</sortorder><team>8165</team><id>1453333</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>50</elapsed><player2>42650</player2><subtype>header</subtype><player1>172899</player1><sortorder>1</sortorder><team>8524</team><id>2015281</id><n>265</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>29587</player2><subtype>shot</subtype><player1>24456</player1><sortorder>5</sortorder><team>8524</team><id>2015471</id><n>308</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>20</value><value>3</value></coordinates><elapsed>3</elapsed><player2>31921</player2><subtype>header</subtype><player1>30893</player1><sortorder>1</sortorder><team>8633</team><id>3821217</id><n>304</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>6</value></coordinates><elapsed>41</elapsed><player2>31097</player2><subtype>header</subtype><player1>26166</player1><sortorder>5</sortorder><team>8633</team><id>3821587</id><n>339</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>6</value></coordinates><elapsed>55</elapsed><player2>31921</player2><subtype>shot</subtype><player1>30893</player1><sortorder>2</sortorder><team>8633</team><id>3821806</id><n>396</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>299</event_incident_typefk><coordinates><value>29</value><value>4</value></coordinates><elapsed>67</elapsed><subtype>header</subtype><player1>31921</player1><sortorder>1</sortorder><team>8633</team><id>3821916</id><n>221</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>9</value></coordinates><elapsed>69</elapsed><player2>30893</player2><subtype>shot</subtype><player1>26166</player1><sortorder>3</sortorder><team>8633</team><id>3821940</id><n>404</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>4</value></coordinates><elapsed>88</elapsed><player2>25921</player2><subtype>shot</subtype><player1>30893</player1><sortorder>7</sortorder><team>8633</team><id>3822082</id><n>397</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>10</elapsed><player2>23934</player2><subtype>header</subtype><player1>11576</player1><sortorder>0</sortorder><team>8559</team><id>773273</id><n>254</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>84</elapsed><player2>31073</player2><subtype>distance</subtype><player1>37552</player1><sortorder>2</sortorder><team>8658</team><id>774600</id><n>350</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>86</elapsed><player2>24372</player2><subtype>shot</subtype><player1>130670</player1><sortorder>2</sortorder><team>8559</team><id>774628</id><n>351</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>10</elapsed><player1>155056</player1><sortorder>0</sortorder><team>8529</team><id>1692991</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>40</elapsed><player1>39222</player1><sortorder>0</sortorder><team>8529</team><id>1693158</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>23</elapsed><subtype>direct_freekick</subtype><player1>32728</player1><sortorder>0</sortorder><team>9850</team><id>2522967</id><n>237</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>43</elapsed><player2>26527</player2><subtype>volley</subtype><player1>24737</player1><sortorder>6</sortorder><team>8659</team><id>2523254</id><n>265</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>82</elapsed><player2>39091</player2><subtype>header</subtype><player1>181276</player1><sortorder>2</sortorder><team>8659</team><id>2523828</id><n>301</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>2</elapsed><player1>27427</player1><sortorder>0</sortorder><team>8178</team><id>2515913</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>20</elapsed><player1>39045</player1><sortorder>0</sortorder><team>9904</team><id>2515967</id><n>20</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>57</elapsed><player1>72735</player1><sortorder>0</sortorder><team>9904</team><id>2516186</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>58</elapsed><player1>31199</player1><sortorder>0</sortorder><team>8178</team><id>2516189</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>69</elapsed><player1>39045</player1><sortorder>0</sortorder><team>9904</team><id>2516231</id><n>25</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>65</elapsed><player1>24549</player1><sortorder>0</sortorder><team>8564</team><id>2563389</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>82</elapsed><player1>24549</player1><sortorder>0</sortorder><team>8564</team><id>2563443</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>84</elapsed><player1>30453</player1><sortorder>0</sortorder><team>8564</team><id>2563457</id><n>18</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>60</value></coordinates><elapsed>14</elapsed><player2>37506</player2><subtype>shot</subtype><player1>474672</player1><sortorder>1</sortorder><team>10205</team><id>5566927</id><n>46</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>60</value></coordinates><elapsed>33</elapsed><player2>37506</player2><subtype>shot</subtype><player1>45744</player1><sortorder>2</sortorder><team>10205</team><id>5567007</id><n>115</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>32</value><value>12</value></coordinates><elapsed>36</elapsed><player2>155066</player2><subtype>distance</subtype><player1>325916</player1><sortorder>2</sortorder><team>9885</team><id>5386560</id><n>182</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>69</elapsed><player1>39447</player1><sortorder>1</sortorder><team>8686</team><id>1336647</id><n>270</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>9</value></coordinates><elapsed>6</elapsed><player2>31921</player2><subtype>shot</subtype><player1>26166</player1><sortorder>1</sortorder><team>8633</team><id>5430913</id><n>39</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>159</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>27</elapsed><subtype>saved</subtype><player1>26392</player1><sortorder>1</sortorder><team>8302</team><id>5431026</id><n>157</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>npm</comment><event_incident_typefk>22</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>58</elapsed><subtype>missed</subtype><player1>30893</player1><sortorder>1</sortorder><team>8633</team><id>5431340</id><n>336</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>22</value><value>3</value></coordinates><elapsed>64</elapsed><player2>208077</player2><subtype>tap_in</subtype><player1>30893</player1><sortorder>1</sortorder><team>8633</team><id>5431368</id><n>365</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>28</value><value>3</value></coordinates><elapsed>66</elapsed><player2>26166</player2><subtype>tap_in</subtype><player1>31921</player1><sortorder>2</sortorder><team>8633</team><id>5431381</id><n>376</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>20</value><value>6</value></coordinates><elapsed>86</elapsed><subtype>shot</subtype><player1>281085</player1><sortorder>0</sortorder><team>8633</team><id>5431510</id><n>460</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>23</value><value>68</value></coordinates><elapsed>8</elapsed><player2>37459</player2><subtype>tap_in</subtype><player1>37412</player1><sortorder>1</sortorder><team>8456</team><id>4347644</id><n>55</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><coordinates><value>21</value><value>2</value></coordinates><elapsed>14</elapsed><subtype>loose_ball</subtype><player1>23354</player1><sortorder>1</sortorder><team>10260</team><id>4347765</id><n>90</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>27</value><value>4</value></coordinates><elapsed>27</elapsed><player2>23354</player2><subtype>header</subtype><player1>39618</player1><sortorder>1</sortorder><team>10260</team><id>4348031</id><n>139</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>14</value><value>6</value></coordinates><elapsed>67</elapsed><player2>30829</player2><subtype>shot</subtype><player1>41468</player1><sortorder>1</sortorder><team>10260</team><id>4349062</id><n>341</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>25</value><value>5</value></coordinates><elapsed>73</elapsed><player2>23354</player2><subtype>header</subtype><player1>165823</player1><sortorder>2</sortorder><team>10260</team><id>4349188</id><n>472</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>63</value></coordinates><elapsed>89</elapsed><player2>30509</player2><subtype>shot</subtype><player1>37412</player1><sortorder>2</sortorder><team>8456</team><id>4349555</id><n>441</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>9</elapsed><player2>30924</player2><subtype>header</subtype><player1>27326</player1><sortorder>1</sortorder><team>9823</team><id>1464283</id><n>295</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>159</event_incident_typefk><elapsed>14</elapsed><subtype>saved</subtype><player1>46700</player1><sortorder>0</sortorder><team>8358</team><id>1464302</id><n>34</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>17</elapsed><player1>46700</player1><sortorder>2</sortorder><team>8358</team><id>1464309</id><n>302</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>88</elapsed><player2>30868</player2><subtype>distance</subtype><player1>30924</player1><sortorder>0</sortorder><team>9823</team><id>1465520</id><n>391</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><coordinates><value>26</value><value>17</value></coordinates><elapsed>13</elapsed><subtype>distance</subtype><player1>160906</player1><sortorder>2</sortorder><team>10218</team><id>5329408</id><n>106</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>7</value></coordinates><elapsed>81</elapsed><player2>45816</player2><subtype>shot</subtype><player1>160906</player1><sortorder>5</sortorder><team>10218</team><id>5329969</id><n>570</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>8</elapsed><player1>46808</player1><sortorder>0</sortorder><team>10281</team><id>2576582</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>15</elapsed><player1>41168</player1><sortorder>0</sortorder><team>10281</team><id>2576589</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>22</elapsed><player1>181297</player1><sortorder>0</sortorder><team>8315</team><id>2576597</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>50</elapsed><player1>96619</player1><sortorder>0</sortorder><team>8315</team><id>2576669</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>62</value></coordinates><elapsed>61</elapsed><player2>30829</player2><subtype>shot</subtype><player1>299215</player1><sortorder>2</sortorder><team>10260</team><id>5266927</id><n>470</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>80</event_incident_typefk><coordinates><value>17</value><value>3</value></coordinates><elapsed>90</elapsed><subtype>shot</subtype><player1>19243</player1><sortorder>5</sortorder><team>8455</team><id>5267415</id><n>702</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>72</elapsed><player1>190796</player1><sortorder>0</sortorder><team>10189</team><id>2669766</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player1>25819</player1><sortorder>0</sortorder><team>10189</team><id>2669880</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>84</elapsed><player1>66578</player1><sortorder>0</sortorder><team>10189</team><id>2669920</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>77</elapsed><player1>18925</player1><sortorder>0</sortorder><team>9875</team><id>1247463</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>4</elapsed><player1>96643</player1><sortorder>0</sortorder><team>10194</team><id>4927967</id><n>21</n><type>goal</type><goal_type>p</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><coordinates><value>24</value><value>66</value></coordinates><elapsed>56</elapsed><subtype>shot</subtype><player1>110148</player1><sortorder>0</sortorder><team>10194</team><id>4928328</id><n>216</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>26</value><value>67</value></coordinates><elapsed>7</elapsed><subtype>shot</subtype><player1>191873</player1><sortorder>6</sortorder><team>9864</team><id>4183774</id><n>97</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>52</elapsed><player1>278917</player1><sortorder>0</sortorder><team>10190</team><id>5519712</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player1>278917</player1><sortorder>0</sortorder><team>10190</team><id>5519849</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>63</elapsed><player1>275122</player1><sortorder>0</sortorder><team>10179</team><id>5520192</id><n>38</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>18</elapsed><player2>33030</player2><subtype>shot</subtype><player1>179772</player1><sortorder>1</sortorder><team>8315</team><id>1521151</id><n>299</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>28</elapsed><player2>33030</player2><subtype>shot</subtype><player1>150832</player1><sortorder>3</sortorder><team>8315</team><id>1521192</id><n>322</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>30</elapsed><player1>37410</player1><sortorder>2</sortorder><team>8315</team><id>1521195</id><n>342</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player1>46700</player1><sortorder>0</sortorder><team>8358</team><id>972743</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>72</elapsed><player1>26588</player1><sortorder>0</sortorder><team>9788</team><id>972946</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>24</value><value>4</value></coordinates><elapsed>6</elapsed><subtype>shot</subtype><player1>211091</player1><sortorder>2</sortorder><team>8540</team><id>4767242</id><n>63</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>19</value><value>67</value></coordinates><elapsed>24</elapsed><player1>42434</player1><sortorder>2</sortorder><team>8540</team><id>4767603</id><n>172</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>65</value></coordinates><elapsed>64</elapsed><player2>282060</player2><subtype>shot</subtype><player1>39447</player1><sortorder>1</sortorder><team>208931</team><id>4768637</id><n>550</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>4</value></coordinates><elapsed>88</elapsed><player2>293235</player2><subtype>header</subtype><player1>409152</player1><sortorder>1</sortorder><team>8540</team><id>4769100</id><n>470</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>27</value><value>64</value></coordinates><elapsed>6</elapsed><player2>96398</player2><subtype>header</subtype><player1>79187</player1><sortorder>4</sortorder><team>8686</team><id>4416019</id><n>56</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>12</value><value>60</value></coordinates><elapsed>27</elapsed><player2>96398</player2><subtype>shot</subtype><player1>264842</player1><sortorder>2</sortorder><team>8686</team><id>4416482</id><n>207</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>64</value></coordinates><elapsed>74</elapsed><player2>37950</player2><subtype>shot</subtype><player1>96398</player1><sortorder>2</sortorder><team>8686</team><id>4417800</id><n>458</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>11</value></coordinates><elapsed>61</elapsed><player2>33871</player2><subtype>shot</subtype><player1>604105</player1><sortorder>3</sortorder><team>8315</team><id>5485369</id><n>265</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>79</elapsed><player1>42041</player1><sortorder>0</sortorder><team>10233</team><id>3017850</id><n>19</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>3</elapsed><player2>30960</player2><subtype>shot</subtype><player1>30840</player1><sortorder>0</sortorder><team>8586</team><id>1670776</id><n>169</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>23</elapsed><player2>31097</player2><subtype>header</subtype><player1>31921</player1><sortorder>0</sortorder><team>8586</team><id>1671093</id><n>179</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>50</elapsed><player2>26631</player2><subtype>distance</subtype><player1>40015</player1><sortorder>0</sortorder><team>8528</team><id>1671631</id><n>200</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>7</value></coordinates><elapsed>64</elapsed><player2>210119</player2><subtype>shot</subtype><player1>38802</player1><sortorder>1</sortorder><team>9748</team><id>3637174</id><n>252</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>74</elapsed><player1>169193</player1><sortorder>0</sortorder><team>9748</team><id>3637258</id><n>259</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>6</value></coordinates><elapsed>31</elapsed><player2>38807</player2><subtype>shot</subtype><player1>30631</player1><sortorder>3</sortorder><team>8456</team><id>4511386</id><n>180</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>26</value><value>3</value></coordinates><elapsed>88</elapsed><player2>156551</player2><subtype>header</subtype><player1>37412</player1><sortorder>2</sortorder><team>8456</team><id>4513330</id><n>463</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>14</elapsed><subtype>shot</subtype><player1>26143</player1><sortorder>0</sortorder><team>8667</team><id>491389</id><n>281</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>37</elapsed><subtype>shot</subtype><player1>24213</player1><sortorder>0</sortorder><team>8456</team><id>491660</id><n>302</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>45</elapsed><player2>33963</player2><subtype>shot</subtype><player1>24213</player1><sortorder>1</sortorder><team>8456</team><id>491749</id><n>305</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>60</elapsed><subtype>direct_freekick</subtype><player1>39073</player1><sortorder>2</sortorder><team>8667</team><id>492075</id><n>332</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>6</elapsed><player1>33030</player1><sortorder>0</sortorder><team>8315</team><id>530280</id><n>17</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>22</elapsed><player1>33025</player1><sortorder>0</sortorder><team>8315</team><id>530380</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>32</elapsed><player1>33866</player1><sortorder>0</sortorder><team>8315</team><id>530445</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>6</value></coordinates><elapsed>68</elapsed><player2>188413</player2><subtype>shot</subtype><player1>169865</player1><sortorder>1</sortorder><team>9941</team><id>4823026</id><n>345</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>16</value><value>64</value></coordinates><elapsed>90</elapsed><player2>167027</player2><subtype>shot</subtype><player1>248689</player1><sortorder>3</sortorder><team>8592</team><id>4823533</id><n>460</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>29</elapsed><player1>96540</player1><sortorder>0</sortorder><team>10167</team><id>1693064</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>42</elapsed><player1>96540</player1><sortorder>0</sortorder><team>10167</team><id>1693188</id><n>22</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>50</elapsed><player1>27610</player1><sortorder>0</sortorder><team>10167</team><id>1693580</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>90</elapsed><player1>30991</player1><sortorder>0</sortorder><team>10233</team><id>1694247</id><n>20</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>59</elapsed><player1>38822</player1><sortorder>1</sortorder><team>8686</team><id>975898</id><n>273</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>65</elapsed><subtype>shot</subtype><player1>38717</player1><sortorder>0</sortorder><team>8686</team><id>975982</id><n>277</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>75</elapsed><subtype>shot</subtype><player1>35421</player1><sortorder>0</sortorder><team>9875</team><id>976127</id><n>284</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>90</elapsed><player1>41658</player1><sortorder>2</sortorder><team>9875</team><id>976395</id><n>300</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player1>118528</player1><sortorder>0</sortorder><team>8370</team><id>1932632</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>64</elapsed><player1>19243</player1><sortorder>0</sortorder><team>8370</team><id>1932924</id><n>28</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>15</elapsed><player1>37506</player1><sortorder>0</sortorder><team>8305</team><id>561254</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>17</elapsed><player1>41156</player1><sortorder>0</sortorder><team>8305</team><id>561262</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>41294</player1><sortorder>0</sortorder><team>9869</team><id>561395</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>57</elapsed><player1>37506</player1><sortorder>0</sortorder><team>8305</team><id>561526</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>70</elapsed><player1>38044</player1><sortorder>0</sortorder><team>8305</team><id>561586</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>72</elapsed><player1>37506</player1><sortorder>0</sortorder><team>8305</team><id>561601</id><n>28</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>10</value></coordinates><elapsed>2</elapsed><player2>314605</player2><subtype>shot</subtype><player1>51553</player1><sortorder>1</sortorder><team>8650</team><id>5530166</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>22</value><value>13</value></coordinates><elapsed>30</elapsed><player2>314605</player2><subtype>distance</subtype><player1>37234</player1><sortorder>3</sortorder><team>8650</team><id>5530820</id><n>206</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>27</value><value>64</value></coordinates><elapsed>49</elapsed><player2>109652</player2><subtype>header</subtype><player1>46700</player1><sortorder>0</sortorder><team>10261</team><id>5531616</id><n>399</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><coordinates><value>20</value><value>3</value></coordinates><elapsed>59</elapsed><subtype>shot</subtype><player1>242709</player1><sortorder>1</sortorder><team>8650</team><id>5531914</id><n>488</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><coordinates><value>26</value><value>62</value></coordinates><elapsed>66</elapsed><player2>108038</player2><subtype>deflected</subtype><player1>160243</player1><sortorder>0</sortorder><team>10261</team><id>5532037</id><n>691</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>20</elapsed><player1>92666</player1><sortorder>0</sortorder><team>8535</team><id>1864932</id><n>21</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>42</elapsed><player1>24507</player1><sortorder>0</sortorder><team>8535</team><id>1865112</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>49</elapsed><player1>92666</player1><sortorder>0</sortorder><team>8535</team><id>1865161</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>61</elapsed><player1>24549</player1><sortorder>0</sortorder><team>9882</team><id>588167</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>22</value><value>5</value></coordinates><elapsed>10</elapsed><player2>155782</player2><subtype>header</subtype><player1>192899</player1><sortorder>2</sortorder><team>8654</team><id>4039398</id><n>47</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>62</value></coordinates><elapsed>42</elapsed><player2>33468</player2><subtype>shot</subtype><player1>239807</player1><sortorder>5</sortorder><team>8659</team><id>4039896</id><n>144</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>25</value><value>12</value></coordinates><elapsed>5</elapsed><subtype>direct_freekick</subtype><player1>164684</player1><sortorder>0</sortorder><team>8633</team><id>5471451</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>8</value></coordinates><elapsed>18</elapsed><player2>30893</player2><subtype>shot</subtype><player1>359193</player1><sortorder>2</sortorder><team>8633</team><id>5471921</id><n>117</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>6</value></coordinates><elapsed>19</elapsed><player2>281085</player2><subtype>shot</subtype><player1>30893</player1><sortorder>5</sortorder><team>8633</team><id>5471973</id><n>169</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>26</value><value>6</value></coordinates><elapsed>39</elapsed><player2>30893</player2><subtype>tap_in</subtype><player1>281085</player1><sortorder>1</sortorder><team>8633</team><id>5472575</id><n>288</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>13</elapsed><player1>656668</player1><sortorder>0</sortorder><team>10243</team><id>5451234</id><n>15</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>35</elapsed><player1>113235</player1><sortorder>0</sortorder><team>10243</team><id>5451701</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>86</elapsed><player1>462608</player1><sortorder>0</sortorder><team>10243</team><id>5452880</id><n>39</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>3517</player1><sortorder>0</sortorder><team>10243</team><id>5452972</id><n>41</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player2>24789</player2><player1>73841</player1><sortorder>0</sortorder><team>9857</team><id>3385436</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player2>40686</player2><player1>41413</player1><sortorder>0</sortorder><team>10167</team><id>3385570</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>4</elapsed><player1>41433</player1><sortorder>0</sortorder><team>8529</team><id>2576500</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>35</elapsed><player1>30714</player1><sortorder>0</sortorder><team>8686</team><id>2576562</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>47</elapsed><player1>206711</player1><sortorder>0</sortorder><team>8686</team><id>2576594</id><n>25</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>53</elapsed><player1>79253</player1><sortorder>0</sortorder><team>8529</team><id>2576599</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>71</elapsed><player1>24414</player1><sortorder>0</sortorder><team>8529</team><id>2576622</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>128020</player1><sortorder>0</sortorder><team>8686</team><id>2576663</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>24</elapsed><player1>30827</player1><sortorder>0</sortorder><team>8697</team><id>2038251</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>39</elapsed><player1>108524</player1><sortorder>0</sortorder><team>8722</team><id>2038451</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>npm</comment><event_incident_typefk>195</event_incident_typefk><elapsed>33</elapsed><player1>121633</player1><sortorder>0</sortorder><team>9823</team><id>2934666</id><n>5</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>69</elapsed><player1>30924</player1><sortorder>0</sortorder><team>9823</team><id>2935199</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>78</elapsed><player1>30834</player1><sortorder>0</sortorder><team>9823</team><id>2935270</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>15</value><value>8</value></coordinates><elapsed>13</elapsed><player2>169193</player2><subtype>shot</subtype><player1>426880</player1><sortorder>1</sortorder><team>9748</team><id>5345309</id><n>87</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>411</event_incident_typefk><coordinates><value>23</value><value>5</value></coordinates><elapsed>45</elapsed><player2>38994</player2><subtype>volley</subtype><player1>282472</player1><sortorder>5</sortorder><team>9748</team><id>5345499</id><n>310</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>19</value><value>61</value></coordinates><elapsed>51</elapsed><subtype>shot</subtype><player1>215299</player1><sortorder>4</sortorder><team>9847</team><id>5345639</id><n>361</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>16</elapsed><player2>23354</player2><subtype>shot</subtype><player1>26165</player1><sortorder>9</sortorder><team>10252</team><id>1002641</id><n>303</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>23</elapsed><player2>40022</player2><subtype>shot</subtype><player1>23334</player1><sortorder>10</sortorder><team>8602</team><id>1002653</id><n>313</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>38</elapsed><player1>38807</player1><sortorder>9</sortorder><team>10252</team><id>1002683</id><n>320</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>82</elapsed><player2>23283</player2><subtype>shot</subtype><player1>26165</player1><sortorder>12</sortorder><team>10252</team><id>1002953</id><n>403</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>391</event_incident_typefk><elapsed>88</elapsed><player2>40945</player2><subtype>loose_ball</subtype><player1>27430</player1><sortorder>2</sortorder><team>10260</team><id>1466153</id><n>390</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>73</elapsed><player1>282770</player1><sortorder>0</sortorder><team>8636</team><id>2984146</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>75</elapsed><player1>49939</player1><sortorder>0</sortorder><team>9885</team><id>2984150</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>49</elapsed><player1>45220</player1><sortorder>0</sortorder><team>8530</team><id>2652592</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>67</elapsed><player1>45220</player1><sortorder>0</sortorder><team>8530</team><id>2652644</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>71</elapsed><player1>41694</player1><sortorder>0</sortorder><team>8530</team><id>2652674</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>81</elapsed><player1>196484</player1><sortorder>0</sortorder><team>8600</team><id>2652692</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>2</elapsed><player2>214685</player2><subtype>header</subtype><player1>36410</player1><sortorder>1</sortorder><team>9825</team><id>3161588</id><n>194</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>47</elapsed><player2>75489</player2><subtype>shot</subtype><player1>36378</player1><sortorder>2</sortorder><team>9825</team><id>3162472</id><n>243</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>30</value><value>62</value></coordinates><elapsed>8</elapsed><player2>303358</player2><subtype>shot</subtype><player1>304856</player1><sortorder>0</sortorder><team>9851</team><id>4696889</id><n>34</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>21</value><value>8</value></coordinates><elapsed>12</elapsed><subtype>shot</subtype><player1>469852</player1><sortorder>1</sortorder><team>9748</team><id>4697025</id><n>382</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>33</value><value>60</value></coordinates><elapsed>56</elapsed><subtype>shot</subtype><player1>303358</player1><sortorder>0</sortorder><team>9851</team><id>4697893</id><n>387</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>22</elapsed><player2>34193</player2><subtype>shot</subtype><player1>32627</player1><sortorder>3</sortorder><team>8602</team><id>1872298</id><n>218</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>51</elapsed><player2>31921</player2><subtype>shot</subtype><player1>31097</player1><sortorder>0</sortorder><team>8586</team><id>1872819</id><n>213</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>8</value></coordinates><elapsed>15</elapsed><player2>178818</player2><subtype>shot</subtype><player1>144993</player1><sortorder>2</sortorder><team>9789</team><id>4502539</id><n>77</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>15</value><value>7</value></coordinates><elapsed>17</elapsed><player2>144993</player2><subtype>shot</subtype><player1>150565</player1><sortorder>1</sortorder><team>9789</team><id>4502588</id><n>85</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>63</value></coordinates><elapsed>27</elapsed><player2>42860</player2><subtype>shot</subtype><player1>469764</player1><sortorder>1</sortorder><team>8697</team><id>4502768</id><n>128</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>882</event_incident_typefk><coordinates><value>28</value><value>10</value></coordinates><elapsed>42</elapsed><player2>144993</player2><subtype>lob</subtype><player1>73167</player1><sortorder>1</sortorder><team>9789</team><id>4503088</id><n>191</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>64</value></coordinates><elapsed>85</elapsed><player2>42860</player2><subtype>shot</subtype><player1>107588</player1><sortorder>1</sortorder><team>8697</team><id>4504153</id><n>404</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>27</value><value>15</value></coordinates><elapsed>7</elapsed><player2>634113</player2><subtype>distance</subtype><player1>38435</player1><sortorder>2</sortorder><team>10242</team><id>5184280</id><n>93</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>6</value></coordinates><elapsed>16</elapsed><player2>38435</player2><subtype>header</subtype><player1>363359</player1><sortorder>0</sortorder><team>10242</team><id>5184458</id><n>166</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>21</elapsed><player1>147614</player1><sortorder>2</sortorder><team>9851</team><id>5184574</id><n>206</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>16</value><value>66</value></coordinates><elapsed>29</elapsed><subtype>shot</subtype><player1>692984</player1><sortorder>0</sortorder><team>9851</team><id>5184694</id><n>412</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>38</elapsed><player1>147614</player1><sortorder>2</sortorder><team>9851</team><id>5184843</id><n>385</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>68</value></coordinates><elapsed>82</elapsed><player2>148830</player2><subtype>shot</subtype><player1>69541</player1><sortorder>0</sortorder><team>9851</team><id>5185814</id><n>664</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>30</value><value>67</value></coordinates><elapsed>8</elapsed><subtype>shot</subtype><player1>194533</player1><sortorder>1</sortorder><team>8178</team><id>4183207</id><n>39</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>9</value></coordinates><elapsed>59</elapsed><player2>37319</player2><subtype>shot</subtype><player1>150922</player1><sortorder>2</sortorder><team>8406</team><id>4184689</id><n>347</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>26</value><value>53</value></coordinates><elapsed>84</elapsed><player2>34114</player2><subtype>distance</subtype><player1>58354</player1><sortorder>2</sortorder><team>8178</team><id>4185319</id><n>520</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>4</elapsed_plus><event_incident_typefk>6</event_incident_typefk><coordinates><value>28</value><value>3</value></coordinates><elapsed>90</elapsed><subtype>volley</subtype><player1>114737</player1><sortorder>22</sortorder><team>8406</team><id>4185726</id><n>599</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>46469</player1><sortorder>0</sortorder><team>10249</team><id>1903151</id><n>12</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>11</elapsed><player1>75474</player1><sortorder>0</sortorder><team>8371</team><id>1074993</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>15</elapsed><player1>37446</player1><sortorder>0</sortorder><team>9783</team><id>1074994</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>24</elapsed><player1>23853</player1><sortorder>0</sortorder><team>8371</team><id>1075013</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>32</elapsed><player1>38424</player1><sortorder>0</sortorder><team>8371</team><id>1075039</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>npm</comment><event_incident_typefk>22</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>59</elapsed><subtype>missed</subtype><player1>36771</player1><sortorder>0</sortorder><team>8358</team><id>4339567</id><n>371</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>46</elapsed><player1>527103</player1><sortorder>0</sortorder><team>9931</team><id>5457920</id><n>15</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>384376</player1><sortorder>0</sortorder><team>9931</team><id>5458584</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>p</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>36</elapsed><player1>187360</player1><sortorder>1</sortorder><team>208931</team><id>5616718</id><n>157</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>16</value><value>64</value></coordinates><elapsed>38</elapsed><player2>202650</player2><subtype>shot</subtype><player1>187360</player1><sortorder>1</sortorder><team>208931</team><id>5616725</id><n>175</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>79</elapsed><player1>27734</player1><sortorder>3</sortorder><team>8600</team><id>5616981</id><n>324</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>15</elapsed><player1>37441</player1><sortorder>0</sortorder><team>8558</team><id>1289938</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>82</elapsed><player1>40165</player1><sortorder>0</sortorder><team>8558</team><id>1290867</id><n>27</n><type>goal</type><goal_type>p</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>90</elapsed><player1>24852</player1><sortorder>0</sortorder><team>8558</team><id>1290868</id><n>25</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>72</event_incident_typefk><elapsed>70</elapsed><sortorder>0</sortorder><team>8686</team><id>1457321</id><n>312</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>20</event_incident_typefk><elapsed>90</elapsed><player1>30714</player1><sortorder>0</sortorder><team>8686</team><id>1457673</id><n>330</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>22</value><value>6</value></coordinates><elapsed>15</elapsed><player2>50047</player2><subtype>header</subtype><player1>46469</player1><sortorder>1</sortorder><team>9825</team><id>4009746</id><n>59</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><coordinates><value>15</value><value>5</value></coordinates><elapsed>17</elapsed><subtype>shot</subtype><player1>113836</player1><sortorder>1</sortorder><team>9825</team><id>4009772</id><n>66</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>16</value><value>3</value></coordinates><elapsed>54</elapsed><player2>50047</player2><subtype>shot</subtype><player1>37436</player1><sortorder>1</sortorder><team>9825</team><id>4010241</id><n>238</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>28</value><value>3</value></coordinates><elapsed>58</elapsed><player2>427438</player2><subtype>shot</subtype><player1>46469</player1><sortorder>1</sortorder><team>9825</team><id>4010278</id><n>254</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>30</value><value>63</value></coordinates><elapsed>63</elapsed><player2>160243</player2><subtype>header</subtype><player1>479020</player1><sortorder>3</sortorder><team>10261</team><id>4010351</id><n>283</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>89</elapsed><player1>37436</player1><sortorder>0</sortorder><team>9825</team><id>4010648</id><n>382</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>60</elapsed><player1>24011</player1><sortorder>0</sortorder><team>9825</team><id>2522503</id><n>275</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>25</value><value>7</value></coordinates><elapsed>20</elapsed><player2>210111</player2><subtype>header</subtype><player1>49677</player1><sortorder>1</sortorder><team>9847</team><id>3758286</id><n>268</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><coordinates><value>22</value><value>60</value></coordinates><elapsed>84</elapsed><player2>409161</player2><subtype>deflected</subtype><player1>210117</player1><sortorder>3</sortorder><team>9748</team><id>3758941</id><n>343</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>299</event_incident_typefk><coordinates><value>28</value><value>5</value></coordinates><elapsed>89</elapsed><subtype>header</subtype><player1>190972</player1><sortorder>4</sortorder><team>9847</team><id>3758964</id><n>232</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>78</elapsed><player1>46417</player1><sortorder>0</sortorder><team>9853</team><id>1365501</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>82</elapsed><player1>33446</player1><sortorder>0</sortorder><team>8588</team><id>1365513</id><n>21</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>83</elapsed><player1>32776</player1><sortorder>0</sortorder><team>8588</team><id>1365514</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player1>27598</player1><sortorder>0</sortorder><team>9888</team><id>425676</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>58</elapsed><player1>41445</player1><sortorder>0</sortorder><team>9888</team><id>425908</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>81</elapsed><player2>39297</player2><subtype>header</subtype><player1>38835</player1><sortorder>5</sortorder><team>9825</team><id>542310</id><n>331</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>28</elapsed><player1>18925</player1><sortorder>0</sortorder><team>9875</team><id>1051003</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>57</elapsed><player1>18925</player1><sortorder>0</sortorder><team>9875</team><id>1051594</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>75</elapsed><player1>24459</player1><sortorder>0</sortorder><team>9976</team><id>1051878</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>npm</comment><event_incident_typefk>348</event_incident_typefk><elapsed>33</elapsed><subtype>saved_back_into_play</subtype><player1>32653</player1><sortorder>0</sortorder><team>9823</team><id>931568</id><n>67</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>58</elapsed><player2>30834</player2><subtype>header</subtype><player1>33085</player1><sortorder>1</sortorder><team>9823</team><id>932247</id><n>226</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>75</elapsed><player2>30894</player2><subtype>shot</subtype><player1>27326</player1><sortorder>1</sortorder><team>9823</team><id>932355</id><n>240</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>86</elapsed><subtype>direct_freekick</subtype><player1>30834</player1><sortorder>0</sortorder><team>9823</team><id>932548</id><n>245</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>39</elapsed><player2>56686</player2><subtype>header</subtype><player1>45204</player1><sortorder>1</sortorder><team>8661</team><id>1874119</id><n>212</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><elapsed>59</elapsed><subtype>shot</subtype><player1>25462</player1><sortorder>0</sortorder><team>8661</team><id>1874291</id><n>115</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>72</elapsed><player2>36378</player2><subtype>shot</subtype><player1>25759</player1><sortorder>2</sortorder><team>8633</team><id>1874379</id><n>254</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>299</event_incident_typefk><elapsed>77</elapsed><subtype>header</subtype><player1>30962</player1><sortorder>0</sortorder><team>8633</team><id>1874409</id><n>156</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>6</event_incident_typefk><elapsed>85</elapsed><subtype>volley</subtype><player1>150330</player1><sortorder>1</sortorder><team>8633</team><id>1874462</id><n>265</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player1>31725</player1><sortorder>0</sortorder><team>9804</team><id>2643797</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>77</elapsed><player1>38827</player1><sortorder>0</sortorder><team>10167</team><id>2643903</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>80</elapsed><player1>195199</player1><sortorder>0</sortorder><team>10167</team><id>2643904</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>84</elapsed><player1>38827</player1><sortorder>0</sortorder><team>10167</team><id>2643905</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>38827</player1><sortorder>0</sortorder><team>10167</team><id>2643936</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>23</value><value>65</value></coordinates><elapsed>17</elapsed><player2>422128</player2><subtype>tap_in</subtype><player1>351999</player1><sortorder>3</sortorder><team>9791</team><id>5008113</id><n>151</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>4</elapsed_plus><event_incident_typefk>407</event_incident_typefk><coordinates><value>24</value><value>15</value></coordinates><elapsed>90</elapsed><player2>586474</player2><subtype>distance</subtype><player1>102719</player1><sortorder>16</sortorder><team>6413</team><id>5009667</id><n>815</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><coordinates><value>27</value><value>4</value></coordinates><elapsed>9</elapsed><subtype>header</subtype><player1>42693</player1><sortorder>1</sortorder><team>7794</team><id>4836420</id><n>61</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>649</event_incident_typefk><coordinates><value>23</value><value>4</value></coordinates><elapsed>32</elapsed><subtype>tap_in</subtype><player1>33812</player1><sortorder>2</sortorder><team>7794</team><id>4836848</id><n>191</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>28</value><value>6</value></coordinates><elapsed>43</elapsed><player2>194479</player2><subtype>header</subtype><player1>33812</player1><sortorder>0</sortorder><team>7794</team><id>4837035</id><n>241</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>11</elapsed><player1>39271</player1><sortorder>0</sortorder><team>8530</team><id>755202</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>29</elapsed><player1>41542</player1><sortorder>0</sortorder><team>8600</team><id>755289</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>34</elapsed><player1>39706</player1><sortorder>0</sortorder><team>8530</team><id>755321</id><n>25</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player1>27734</player1><sortorder>0</sortorder><team>8600</team><id>755561</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>69</elapsed><player1>27734</player1><sortorder>0</sortorder><team>8600</team><id>755688</id><n>30</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player1>27734</player1><sortorder>0</sortorder><team>8600</team><id>755789</id><n>32</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>6</elapsed><player2>30727</player2><subtype>shot</subtype><player1>30861</player1><sortorder>2</sortorder><team>9885</team><id>485742</id><n>280</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>26</elapsed><player2>30861</player2><subtype>header</subtype><player1>38827</player1><sortorder>1</sortorder><team>9885</team><id>485798</id><n>300</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>85</elapsed><player2>30727</player2><subtype>shot</subtype><player1>30712</player1><sortorder>5</sortorder><team>9885</team><id>485971</id><n>382</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>89</elapsed><player1>30549</player1><sortorder>1</sortorder><team>10233</team><id>485978</id><n>383</n><type>goal</type><goal_type>p</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>115</event_incident_typefk><elapsed>90</elapsed><player1>39455</player1><sortorder>1</sortorder><team>10233</team><id>485989</id><n>387</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>70</elapsed><player2>59595</player2><subtype>header</subtype><player1>38364</player1><sortorder>5</sortorder><team>9905</team><id>1834637</id><n>394</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>85</elapsed><player2>108401</player2><subtype>shot</subtype><player1>32118</player1><sortorder>1</sortorder><team>8722</team><id>1834720</id><n>401</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player1>182765</player1><sortorder>0</sortorder><team>8524</team><id>1676010</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>59</elapsed><player1>27671</player1><sortorder>0</sortorder><team>8524</team><id>1676586</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player1>74305</player1><sortorder>0</sortorder><team>6269</team><id>1677003</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>24</elapsed><player1>177698</player1><sortorder>0</sortorder><team>9776</team><id>3296526</id><n>23</n><type>goal</type><goal_type>o</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>52</elapsed><player1>184554</player1><sortorder>0</sortorder><team>9788</team><id>3296918</id><n>19</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>10</elapsed><player1>39854</player1><sortorder>0</sortorder><team>8634</team><id>2545083</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>16</elapsed><player1>150250</player1><sortorder>0</sortorder><team>8634</team><id>2545084</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>27</elapsed><player1>150250</player1><sortorder>0</sortorder><team>8634</team><id>2545085</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>29</elapsed><player1>30981</player1><sortorder>0</sortorder><team>8634</team><id>2545086</id><n>25</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>26</value><value>5</value></coordinates><elapsed>12</elapsed><player2>28467</player2><subtype>header</subtype><player1>164684</player1><sortorder>1</sortorder><team>8633</team><id>4127759</id><n>67</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>16</value><value>5</value></coordinates><elapsed>36</elapsed><player2>191315</player2><subtype>shot</subtype><player1>281085</player1><sortorder>4</sortorder><team>8633</team><id>4128026</id><n>205</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>67</value></coordinates><elapsed>80</elapsed><player2>213805</player2><subtype>shot</subtype><player1>174472</player1><sortorder>9</sortorder><team>8302</team><id>4128574</id><n>528</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>14</value><value>65</value></coordinates><elapsed>31</elapsed><player2>207236</player2><subtype>shot</subtype><player1>264190</player1><sortorder>0</sortorder><team>9788</team><id>5604528</id><n>137</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>19</value><value>64</value></coordinates><elapsed>63</elapsed><player2>192625</player2><subtype>header</subtype><player1>243829</player1><sortorder>0</sortorder><team>9788</team><id>5605347</id><n>302</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>26</value><value>9</value></coordinates><elapsed>57</elapsed><player2>23837</player2><subtype>volley</subtype><player1>25537</player1><sortorder>2</sortorder><team>9826</team><id>4512417</id><n>251</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>9</elapsed><subtype>loose_ball</subtype><player1>23225</player1><sortorder>2</sortorder><team>8667</team><id>852224</id><n>210</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>20</elapsed><subtype>direct_freekick</subtype><player1>23022</player1><sortorder>1</sortorder><team>8667</team><id>852368</id><n>222</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>28</elapsed><player2>23225</player2><subtype>shot</subtype><player1>34437</player1><sortorder>1</sortorder><team>8667</team><id>852492</id><n>230</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>49</elapsed><player1>26066</player1><sortorder>1</sortorder><team>8667</team><id>852920</id><n>256</n><type>goal</type><goal_type>o</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>65</elapsed><player1>30735</player1><sortorder>0</sortorder><team>8668</team><id>853154</id><n>271</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>5</elapsed><player1>212520</player1><sortorder>0</sortorder><team>8674</team><id>3926272</id><n>4</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>58</elapsed><player2>207021</player2><player1>69803</player1><sortorder>0</sortorder><team>6413</team><id>3927505</id><n>11</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>26</elapsed><player2>26675</player2><subtype>shot</subtype><player1>39141</player1><sortorder>5</sortorder><team>9790</team><id>814737</id><n>226</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>45</elapsed><subtype>direct_freekick</subtype><player1>39106</player1><sortorder>2</sortorder><team>9790</team><id>814850</id><n>249</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>50</elapsed><player2>27303</player2><subtype>header</subtype><player1>30249</player1><sortorder>3</sortorder><team>10189</team><id>815002</id><n>254</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>62</elapsed><subtype>shot</subtype><player1>184645</player1><sortorder>1</sortorder><team>10189</team><id>815117</id><n>268</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>80</elapsed><player2>38843</player2><subtype>shot</subtype><player1>39141</player1><sortorder>2</sortorder><team>9790</team><id>815223</id><n>285</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>90</elapsed><player2>27461</player2><subtype>header</subtype><player1>30249</player1><sortorder>3</sortorder><team>10189</team><id>815321</id><n>295</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>54</elapsed><player1>30906</player1><sortorder>0</sortorder><team>10167</team><id>975820</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>15</elapsed><player2>75192</player2><subtype>shot</subtype><player1>33729</player1><sortorder>1</sortorder><team>10281</team><id>530320</id><n>187</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>25</elapsed><subtype>distance</subtype><player1>37597</player1><sortorder>4</sortorder><team>10281</team><id>530379</id><n>195</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>56</elapsed><subtype>distance</subtype><player1>75192</player1><sortorder>0</sortorder><team>10281</team><id>530584</id><n>220</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>299</event_incident_typefk><elapsed>65</elapsed><subtype>header</subtype><player1>37446</player1><sortorder>2</sortorder><team>9783</team><id>530642</id><n>119</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>10</value></coordinates><elapsed>18</elapsed><player2>30906</player2><subtype>shot</subtype><player1>161328</player1><sortorder>2</sortorder><team>8564</team><id>4514294</id><n>59</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>57</elapsed><player1>24549</player1><sortorder>2</sortorder><team>8564</team><id>4514372</id><n>208</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>6</value></coordinates><elapsed>65</elapsed><player2>199291</player2><subtype>shot</subtype><player1>161328</player1><sortorder>2</sortorder><team>8564</team><id>4514391</id><n>278</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>58</elapsed><player1>38382</player1><sortorder>0</sortorder><team>8696</team><id>482878</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>62</value></coordinates><elapsed>8</elapsed><player2>359193</player2><subtype>shot</subtype><player1>30893</player1><sortorder>1</sortorder><team>8633</team><id>4943512</id><n>110</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>13</value><value>62</value></coordinates><elapsed>23</elapsed><player2>281085</player2><subtype>shot</subtype><player1>208077</player1><sortorder>2</sortorder><team>8633</team><id>4943892</id><n>333</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>15</value><value>13</value></coordinates><elapsed>85</elapsed><player2>213694</player2><subtype>distance</subtype><player1>213486</player1><sortorder>2</sortorder><team>9910</team><id>4945860</id><n>907</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>6</elapsed_plus><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>66</value></coordinates><elapsed>90</elapsed><player2>359197</player2><subtype>shot</subtype><player1>28467</player1><sortorder>18</sortorder><team>8633</team><id>4946057</id><n>993</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>10</elapsed><player1>30889</player1><sortorder>1</sortorder><team>8633</team><id>982624</id><n>259</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>52</elapsed><subtype>direct_freekick</subtype><player1>30866</player1><sortorder>2</sortorder><team>8302</team><id>982812</id><n>322</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>60</elapsed><player2>28467</player2><subtype>shot</subtype><player1>30893</player1><sortorder>1</sortorder><team>8633</team><id>982830</id><n>334</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>64</elapsed><player2>30840</player2><subtype>header</subtype><player1>30962</player1><sortorder>2</sortorder><team>8633</team><id>982837</id><n>340</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>80</event_incident_typefk><elapsed>90</elapsed><subtype>shot</subtype><player1>30840</player1><sortorder>2</sortorder><team>8633</team><id>982918</id><n>379</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>15</elapsed><player2>23837</player2><subtype>volley</subtype><player1>31953</player1><sortorder>3</sortorder><team>8658</team><id>1172126</id><n>167</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>51</elapsed><player1>23837</player1><sortorder>1</sortorder><team>8658</team><id>1172696</id><n>216</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>59</elapsed><subtype>shot</subtype><player1>25550</player1><sortorder>2</sortorder><team>8659</team><id>1172824</id><n>220</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>69</elapsed><player2>23257</player2><subtype>header</subtype><player1>26527</player1><sortorder>2</sortorder><team>8659</team><id>1172983</id><n>206</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>77</elapsed><player1>30981</player1><sortorder>0</sortorder><team>8634</team><id>3351122</id><n>24</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>11</elapsed><player1>171172</player1><sortorder>0</sortorder><team>8371</team><id>2671586</id><n>19</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>50</elapsed><player1>108809</player1><sortorder>0</sortorder><team>8371</team><id>2671591</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>60</elapsed><player1>108809</player1><sortorder>0</sortorder><team>8371</team><id>2671595</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>69</elapsed><player1>38886</player1><sortorder>0</sortorder><team>8371</team><id>2671601</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>44</elapsed><player1>30618</player1><sortorder>0</sortorder><team>8650</team><id>3371303</id><n>271</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>131</event_incident_typefk><elapsed>45</elapsed><subtype>loose_ball</subtype><player1>30668</player1><sortorder>8</sortorder><team>8654</team><id>3371323</id><n>244</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>71</elapsed><player1>30618</player1><sortorder>0</sortorder><team>8650</team><id>3371639</id><n>268</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>65</value></coordinates><elapsed>10</elapsed><player2>33871</player2><subtype>shot</subtype><player1>75447</player1><sortorder>1</sortorder><team>9906</team><id>3935986</id><n>39</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>31</value><value>16</value></coordinates><elapsed>15</elapsed><player2>33973</player2><subtype>distance</subtype><player1>75342</player1><sortorder>3</sortorder><team>8560</team><id>3936040</id><n>74</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>7</value></coordinates><elapsed>82</elapsed><player2>485141</player2><subtype>shot</subtype><player1>46289</player1><sortorder>1</sortorder><team>8560</team><id>3936725</id><n>317</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>27</value><value>64</value></coordinates><elapsed>9</elapsed><subtype>shot</subtype><player1>279107</player1><sortorder>10</sortorder><team>10217</team><id>5290687</id><n>84</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>21</value><value>7</value></coordinates><elapsed>24</elapsed><player2>45816</player2><subtype>volley</subtype><player1>160906</player1><sortorder>2</sortorder><team>10218</team><id>5290866</id><n>150</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>8</value></coordinates><elapsed>69</elapsed><player2>278848</player2><subtype>shot</subtype><player1>160906</player1><sortorder>10</sortorder><team>10218</team><id>5291847</id><n>516</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>32</value><value>67</value></coordinates><elapsed>78</elapsed><player2>20645</player2><subtype>shot</subtype><player1>725718</player1><sortorder>14</sortorder><team>10217</team><id>5291975</id><n>609</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>13</value><value>61</value></coordinates><elapsed>86</elapsed><player2>20645</player2><subtype>shot</subtype><player1>725718</player1><sortorder>5</sortorder><team>10217</team><id>5292158</id><n>715</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>18</value><value>64</value></coordinates><elapsed>89</elapsed><player2>17855</player2><subtype>header</subtype><player1>20645</player1><sortorder>3</sortorder><team>10217</team><id>5292227</id><n>726</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>22</elapsed><player1>24549</player1><sortorder>0</sortorder><team>8564</team><id>2639422</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>60</elapsed><player1>108808</player1><sortorder>0</sortorder><team>8564</team><id>2639549</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>9</elapsed><player1>34045</player1><sortorder>0</sortorder><team>8722</team><id>681751</id><n>15</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>33</elapsed><player2>24435</player2><subtype>header</subtype><player1>40005</player1><sortorder>1</sortorder><team>10194</team><id>641193</id><n>306</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>81</elapsed><player2>34574</player2><subtype>header</subtype><player1>47382</player1><sortorder>2</sortorder><team>10261</team><id>641459</id><n>340</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>67</elapsed><subtype>distance</subtype><player1>96540</player1><sortorder>0</sortorder><team>10167</team><id>2120697</id><n>289</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>80</event_incident_typefk><elapsed>90</elapsed><subtype>shot</subtype><player1>27657</player1><sortorder>111</sortorder><team>10167</team><id>2120867</id><n>263</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>66</value></coordinates><elapsed>46</elapsed><player2>27427</player2><subtype>shot</subtype><player1>31199</player1><sortorder>5</sortorder><team>8178</team><id>3950829</id><n>176</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>60</value></coordinates><elapsed>58</elapsed><player2>27427</player2><subtype>shot</subtype><player1>212867</player1><sortorder>4</sortorder><team>8178</team><id>3951173</id><n>232</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>60</elapsed><player2>115847</player2><subtype>header</subtype><player1>78314</player1><sortorder>2</sortorder><team>9904</team><id>3951222</id><n>228</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>61</value></coordinates><elapsed>71</elapsed><player2>34114</player2><subtype>shot</subtype><player1>208230</player1><sortorder>7</sortorder><team>8178</team><id>3951417</id><n>348</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>8</value></coordinates><elapsed>42</elapsed><player2>109652</player2><subtype>shot</subtype><player1>479020</player1><sortorder>9</sortorder><team>10261</team><id>4835469</id><n>663</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>25</value><value>7</value></coordinates><elapsed>60</elapsed><player2>479020</player2><subtype>header</subtype><player1>108038</player1><sortorder>2</sortorder><team>10261</team><id>4835990</id><n>721</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>20</value><value>55</value></coordinates><elapsed>79</elapsed><player2>107417</player2><subtype>distance</subtype><player1>79574</player1><sortorder>1</sortorder><team>8455</team><id>4836361</id><n>462</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>37</value><value>53</value></coordinates><elapsed>86</elapsed><subtype>direct_freekick</subtype><player1>94086</player1><sortorder>2</sortorder><team>8455</team><id>4836506</id><n>857</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>24</elapsed><player1>182923</player1><sortorder>0</sortorder><team>9748</team><id>2477008</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>71</elapsed><player1>109280</player1><sortorder>0</sortorder><team>9874</team><id>2477466</id><n>15</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>72</elapsed><subtype>distance</subtype><player1>23253</player1><sortorder>5</sortorder><team>10194</team><id>957209</id><n>300</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>85</elapsed><player2>30960</player2><subtype>shot</subtype><player1>23782</player1><sortorder>8</sortorder><team>8456</team><id>957307</id><n>278</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><elapsed_plus>6</elapsed_plus><event_incident_typefk>346</event_incident_typefk><elapsed>90</elapsed><player1>40695</player1><sortorder>1</sortorder><team>10194</team><id>957365</id><n>233</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>25</value><value>5</value></coordinates><elapsed>33</elapsed><subtype>shot</subtype><player1>36774</player1><sortorder>4</sortorder><team>8226</team><id>3656950</id><n>174</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>7</value></coordinates><elapsed>35</elapsed><player2>242709</player2><subtype>shot</subtype><player1>27866</player1><sortorder>1</sortorder><team>8226</team><id>3656972</id><n>176</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player1>26199</player1><sortorder>0</sortorder><team>8583</team><id>1542528</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>39</elapsed><player1>30284</player1><sortorder>0</sortorder><team>8534</team><id>4113819</id><n>160</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>29</value><value>8</value></coordinates><elapsed>57</elapsed><player2>96398</player2><subtype>shot</subtype><player1>34305</player1><sortorder>1</sortorder><team>8686</team><id>4114321</id><n>262</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>25</elapsed><player1>34102</player1><sortorder>0</sortorder><team>9789</team><id>629197</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>54</elapsed><player1>25819</player1><sortorder>0</sortorder><team>8177</team><id>629840</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>63</elapsed><player1>30707</player1><sortorder>0</sortorder><team>9789</team><id>629994</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>83</elapsed><player1>31718</player1><sortorder>0</sortorder><team>9789</team><id>630206</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>5</elapsed><player1>192625</player1><sortorder>0</sortorder><team>9788</team><id>1257924</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>11</elapsed><player1>27326</player1><sortorder>0</sortorder><team>9823</team><id>1257952</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>40</elapsed><player1>30872</player1><sortorder>0</sortorder><team>9823</team><id>1258162</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player1>129944</player1><sortorder>0</sortorder><team>9788</team><id>1258667</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>61</elapsed><player1>25957</player1><sortorder>0</sortorder><team>9788</team><id>1258708</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>84</elapsed><player1>30894</player1><sortorder>0</sortorder><team>9823</team><id>1258898</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>9</elapsed><player2>40686</player2><player1>24791</player1><sortorder>0</sortorder><team>10167</team><id>3268421</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>75</elapsed><player1>94326</player1><sortorder>0</sortorder><team>8524</team><id>3268621</id><n>26</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>77</elapsed><player1>32748</player1><sortorder>0</sortorder><team>10167</team><id>3268630</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player2>73999</player2><player1>182765</player1><sortorder>1</sortorder><team>10167</team><id>3268675</id><n>31</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>3</elapsed><player2>30892</player2><subtype>header</subtype><player1>25984</player1><sortorder>11</sortorder><team>8650</team><id>2729072</id><n>265</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>17</elapsed><player2>51553</player2><subtype>shot</subtype><player1>156008</player1><sortorder>11</sortorder><team>8650</team><id>2729171</id><n>246</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>54</elapsed><player2>184536</player2><subtype>shot</subtype><player1>51553</player1><sortorder>11</sortorder><team>8650</team><id>2729549</id><n>256</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>60</elapsed><player2>156008</player2><subtype>shot</subtype><player1>51553</player1><sortorder>11</sortorder><team>8650</team><id>2729596</id><n>272</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>74</elapsed><player2>30892</player2><subtype>shot</subtype><player1>184822</player1><sortorder>11</sortorder><team>8650</team><id>2729661</id><n>277</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>76</elapsed><subtype>direct_freekick</subtype><player1>156008</player1><sortorder>1</sortorder><team>8650</team><id>2729672</id><n>292</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>74</elapsed><player1>178833</player1><sortorder>0</sortorder><team>8721</team><id>1839541</id><n>19</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>72</elapsed><player1>172901</player1><sortorder>0</sortorder><team>9788</team><id>2642109</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>77</elapsed><player1>167094</player1><sortorder>0</sortorder><team>8697</team><id>2642118</id><n>15</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>25</value><value>2</value></coordinates><elapsed>35</elapsed><player1>26216</player1><sortorder>2</sortorder><team>7794</team><id>5241517</id><n>145</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><coordinates><value>28</value><value>6</value></coordinates><elapsed>73</elapsed><player2>38336</player2><subtype>deflected</subtype><player1>488139</player1><sortorder>1</sortorder><team>9829</team><id>5241657</id><n>323</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>40735</player1><sortorder>0</sortorder><team>9788</team><id>2592028</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>52</elapsed><player1>71560</player1><sortorder>0</sortorder><team>8178</team><id>2592320</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>58</elapsed><player1>150201</player1><sortorder>0</sortorder><team>9788</team><id>2592396</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>60</elapsed><player1>31199</player1><sortorder>0</sortorder><team>8178</team><id>2592397</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>64</elapsed><player1>178812</player1><sortorder>0</sortorder><team>8178</team><id>2592423</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>86</elapsed><player1>192625</player1><sortorder>0</sortorder><team>9788</team><id>2592640</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><elapsed>51</elapsed><subtype>header</subtype><player1>38848</player1><sortorder>10</sortorder><team>8722</team><id>1303760</id><n>333</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>167</event_incident_typefk><elapsed>81</elapsed><subtype>bicycle_kick</subtype><player1>31244</player1><sortorder>10</sortorder><team>8721</team><id>1303970</id><n>368</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>4</elapsed><player1>95574</player1><sortorder>0</sortorder><team>8226</team><id>1384119</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>20</elapsed><subtype>shot</subtype><player1>40015</player1><sortorder>0</sortorder><team>8528</team><id>941269</id><n>257</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>64</elapsed><player2>156008</player2><subtype>header</subtype><player1>30988</player1><sortorder>3</sortorder><team>8472</team><id>942039</id><n>311</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>11</elapsed><player2>38802</player2><subtype>shot</subtype><player1>33418</player1><sortorder>2</sortorder><team>8472</team><id>507018</id><n>250</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>18</elapsed><player2>26454</player2><subtype>header</subtype><player1>24372</player1><sortorder>1</sortorder><team>8559</team><id>507106</id><n>255</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>21</elapsed><subtype>shot</subtype><player1>23783</player1><sortorder>4</sortorder><team>8559</team><id>507142</id><n>259</n><type>goal</type><goal_type>n</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><elapsed>30</elapsed><subtype>shot</subtype><player1>33418</player1><sortorder>2</sortorder><team>8472</team><id>507259</id><n>148</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>39</elapsed><player2>23783</player2><subtype>shot</subtype><player1>34261</player1><sortorder>3</sortorder><team>8559</team><id>507390</id><n>278</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>55</elapsed><player2>23933</player2><subtype>shot</subtype><player1>34261</player1><sortorder>2</sortorder><team>8559</team><id>507734</id><n>295</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>14</value><value>62</value></coordinates><elapsed>52</elapsed><player2>213486</player2><subtype>shot</subtype><player1>49836</player1><sortorder>1</sortorder><team>9910</team><id>3679478</id><n>268</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>25</value><value>7</value></coordinates><elapsed>60</elapsed><subtype>shot</subtype><player1>474680</player1><sortorder>2</sortorder><team>7869</team><id>3679642</id><n>224</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>52</elapsed><player2>31073</player2><subtype>shot</subtype><player1>33049</player1><sortorder>1</sortorder><team>8658</team><id>877315</id><n>323</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>51</elapsed><player1>30834</player1><sortorder>0</sortorder><team>9823</team><id>1036482</id><n>184</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>59</elapsed><subtype>shot</subtype><player1>49939</player1><sortorder>1</sortorder><team>8178</team><id>1036574</id><n>167</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>649</event_incident_typefk><coordinates><value>22</value><value>7</value></coordinates><elapsed>56</elapsed><subtype>tap_in</subtype><player1>248689</player1><sortorder>2</sortorder><team>8592</team><id>5583019</id><n>385</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>29</value><value>17</value></coordinates><elapsed>22</elapsed><subtype>direct_freekick</subtype><player1>194660</player1><sortorder>1</sortorder><team>9783</team><id>5086435</id><n>87</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>18</value><value>65</value></coordinates><elapsed>76</elapsed><player2>33030</player2><subtype>shot</subtype><player1>111237</player1><sortorder>6</sortorder><team>8302</team><id>5086724</id><n>299</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>11</elapsed><player1>21785</player1><sortorder>0</sortorder><team>9865</team><id>519746</id><n>18</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>19</elapsed><player1>75216</player1><sortorder>0</sortorder><team>8388</team><id>519873</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>51</elapsed><player1>102002</player1><sortorder>0</sortorder><team>8388</team><id>520385</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>dg</comment><event_incident_typefk>649</event_incident_typefk><elapsed>12</elapsed><subtype>tap_in</subtype><player1>197514</player1><sortorder>1</sortorder><team>9879</team><id>1670924</id><n>22</n><type>goal</type><goal_type>dg</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>25</elapsed><player1>37760</player1><sortorder>0</sortorder><team>9810</team><id>495010</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>40</elapsed><player1>27475</player1><sortorder>0</sortorder><team>9810</team><id>495202</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>86</elapsed><player1>37760</player1><sortorder>0</sortorder><team>9810</team><id>496139</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>69864</player1><sortorder>0</sortorder><team>9810</team><id>496263</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>52</elapsed><player1>18734</player1><sortorder>0</sortorder><team>9831</team><id>2749123</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>71</elapsed><player1>18734</player1><sortorder>0</sortorder><team>9831</team><id>2749239</id><n>26</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>84</elapsed><player1>210406</player1><sortorder>0</sortorder><team>9831</team><id>2749338</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>25</value><value>62</value></coordinates><elapsed>15</elapsed><player2>119525</player2><subtype>header</subtype><player1>71605</player1><sortorder>2</sortorder><team>8226</team><id>3744541</id><n>281</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>23</value><value>64</value></coordinates><elapsed>84</elapsed><subtype>shot</subtype><player1>27866</player1><sortorder>4</sortorder><team>8226</team><id>3746154</id><n>387</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>13</elapsed><player1>36005</player1><sortorder>0</sortorder><team>10269</team><id>3106287</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>19</elapsed><player1>39455</player1><sortorder>0</sortorder><team>9789</team><id>3106305</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>22</elapsed><player1>129944</player1><sortorder>0</sortorder><team>9789</team><id>3106311</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>54</elapsed><player1>93447</player1><sortorder>0</sortorder><team>9789</team><id>3106352</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>56</elapsed><player1>93447</player1><sortorder>0</sortorder><team>9789</team><id>3106353</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>72</elapsed><player1>93447</player1><sortorder>0</sortorder><team>9789</team><id>3106368</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>81</elapsed><player1>150565</player1><sortorder>0</sortorder><team>9789</team><id>3106376</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>18</elapsed><player2>41658</player2><player1>25759</player1><sortorder>0</sortorder><team>9875</team><id>3287979</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>84</elapsed><player1>42041</player1><sortorder>0</sortorder><team>10233</team><id>3288116</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>18</elapsed><player1>74410</player1><sortorder>0</sortorder><team>8533</team><id>1038480</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>28</elapsed><player1>129391</player1><sortorder>0</sortorder><team>8540</team><id>1038590</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>39</elapsed><player1>32747</player1><sortorder>0</sortorder><team>8540</team><id>1038762</id><n>26</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>53</elapsed><player1>32747</player1><sortorder>0</sortorder><team>8540</team><id>1039114</id><n>32</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>21</elapsed><player1>93327</player1><sortorder>0</sortorder><team>8481</team><id>2716315</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player1>279181</player1><sortorder>0</sortorder><team>4087</team><id>2716426</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>65</elapsed><player1>131995</player1><sortorder>0</sortorder><team>8481</team><id>2716904</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>81</elapsed><player1>131995</player1><sortorder>0</sortorder><team>8481</team><id>2716905</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>45</elapsed><player2>36012</player2><subtype>shot</subtype><player1>24006</player1><sortorder>1</sortorder><team>8668</team><id>691997</id><n>279</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>88</elapsed><player2>24003</player2><subtype>shot</subtype><player1>24006</player1><sortorder>1</sortorder><team>8668</team><id>693417</id><n>326</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>22</value><value>7</value></coordinates><elapsed>7</elapsed><player2>38578</player2><subtype>shot</subtype><player1>359193</player1><sortorder>1</sortorder><team>8558</team><id>3820142</id><n>311</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>4</value></coordinates><elapsed>90</elapsed><player2>37654</player2><subtype>shot</subtype><player1>58294</player1><sortorder>9</sortorder><team>8558</team><id>3821104</id><n>410</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>23</value><value>13</value></coordinates><elapsed>24</elapsed><subtype>direct_freekick</subtype><player1>41098</player1><sortorder>0</sortorder><team>8121</team><id>4722427</id><n>150</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>24</value><value>66</value></coordinates><elapsed>56</elapsed><player2>26163</player2><subtype>header</subtype><player1>239259</player1><sortorder>2</sortorder><team>9831</team><id>4723269</id><n>311</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>21</elapsed><player1>41927</player1><sortorder>0</sortorder><team>8697</team><id>2506514</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>29</elapsed><player1>110148</player1><sortorder>0</sortorder><team>8697</team><id>2506523</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>50</elapsed><player1>36011</player1><sortorder>0</sortorder><team>8226</team><id>2506577</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>73</elapsed><player1>110148</player1><sortorder>0</sortorder><team>8697</team><id>2506639</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player1>110148</player1><sortorder>0</sortorder><team>8697</team><id>2506642</id><n>29</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>5</elapsed><player1>40093</player1><sortorder>0</sortorder><team>8165</team><id>3164334</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>75</elapsed><player1>20694</player1><sortorder>0</sortorder><team>9905</team><id>3164387</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>14</elapsed><player1>36011</player1><sortorder>1</sortorder><team>8226</team><id>3340721</id><n>20</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>39</elapsed><player2>26255</player2><player1>31199</player1><sortorder>0</sortorder><team>8178</team><id>3340851</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>40</elapsed><player2>242709</player2><player1>212893</player1><sortorder>0</sortorder><team>8226</team><id>3340871</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>54</elapsed><player2>37373</player2><player1>27429</player1><sortorder>0</sortorder><team>8178</team><id>3341225</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player2>37357</player2><player1>71605</player1><sortorder>0</sortorder><team>8226</team><id>3341547</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>32</elapsed><player1>102699</player1><sortorder>0</sortorder><team>9873</team><id>2475189</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>40</elapsed><player1>71605</player1><sortorder>0</sortorder><team>7794</team><id>2475198</id><n>21</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>42693</player1><sortorder>0</sortorder><team>7794</team><id>2475237</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>78</elapsed><player1>102699</player1><sortorder>0</sortorder><team>9873</team><id>2475271</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>80</elapsed><player1>111787</player1><sortorder>0</sortorder><team>9873</team><id>2475275</id><n>30</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>24</elapsed><player1>13518</player1><sortorder>0</sortorder><team>9789</team><id>2376398</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>28</elapsed><player1>129944</player1><sortorder>0</sortorder><team>9789</team><id>2376402</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>49</elapsed><player1>38647</player1><sortorder>0</sortorder><team>9810</team><id>2376426</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>51</elapsed><player1>97762</player1><sortorder>0</sortorder><team>9810</team><id>2376427</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>54</elapsed><player1>177714</player1><sortorder>0</sortorder><team>9789</team><id>2376431</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>73</elapsed><player1>145561</player1><sortorder>0</sortorder><team>9810</team><id>2376446</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>21</value><value>4</value></coordinates><elapsed>5</elapsed><player2>242469</player2><subtype>header</subtype><player1>30981</player1><sortorder>5</sortorder><team>8634</team><id>4504633</id><n>35</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>26</value><value>6</value></coordinates><elapsed>59</elapsed><player2>19533</player2><subtype>shot</subtype><player1>30981</player1><sortorder>4</sortorder><team>8634</team><id>4505750</id><n>243</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>20</value><value>60</value></coordinates><elapsed>67</elapsed><subtype>shot</subtype><player1>194660</player1><sortorder>2</sortorder><team>9783</team><id>4505897</id><n>290</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>24</value><value>61</value></coordinates><elapsed>76</elapsed><subtype>shot</subtype><player1>208926</player1><sortorder>1</sortorder><team>9783</team><id>4506048</id><n>349</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>18</elapsed><player1>109280</player1><sortorder>0</sortorder><team>9874</team><id>2550985</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>40</elapsed><player1>201939</player1><sortorder>0</sortorder><team>9874</team><id>2550996</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>46</elapsed><player1>40740</player1><sortorder>0</sortorder><team>8592</team><id>2551001</id><n>19</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>55</elapsed><player1>154280</player1><sortorder>0</sortorder><team>8592</team><id>2551007</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>87</elapsed><player1>39854</player1><sortorder>0</sortorder><team>8634</team><id>2369669</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>90</elapsed><player1>213823</player1><sortorder>0</sortorder><team>7878</team><id>2369673</id><n>21</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>4</elapsed><player2>36394</player2><subtype>shot</subtype><player1>23139</player1><sortorder>2</sortorder><team>8654</team><id>376060</id><n>244</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>10</elapsed><player2>37277</player2><subtype>shot</subtype><player1>23139</player1><sortorder>1</sortorder><team>8654</team><id>376165</id><n>251</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>47</elapsed><player2>34466</player2><subtype>volley</subtype><player1>127857</player1><sortorder>3</sortorder><team>8528</team><id>376929</id><n>294</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>4</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>30729</player2><subtype>shot</subtype><player1>36784</player1><sortorder>0</sortorder><team>8564</team><id>861208</id><n>200</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>5</elapsed_plus><event_incident_typefk>80</event_incident_typefk><elapsed>90</elapsed><subtype>shot</subtype><player1>36784</player1><sortorder>0</sortorder><team>8564</team><id>861211</id><n>201</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>13</elapsed><player2>38821</player2><subtype>header</subtype><player1>33634</player1><sortorder>3</sortorder><team>9906</team><id>1368708</id><n>285</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>34</elapsed><player2>105827</player2><subtype>shot</subtype><player1>38460</player1><sortorder>2</sortorder><team>9906</team><id>1368757</id><n>307</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><event_incident_typefk>159</event_incident_typefk><elapsed>70</elapsed><subtype>saved</subtype><player1>25574</player1><sortorder>0</sortorder><team>8661</team><id>1368921</id><n>205</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>4</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>19243</player2><subtype>shot</subtype><player1>38821</player1><sortorder>3</sortorder><team>9906</team><id>1368992</id><n>391</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>18</elapsed><player1>37459</player1><sortorder>0</sortorder><team>10267</team><id>642868</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>32</elapsed><player1>41294</player1><sortorder>0</sortorder><team>9869</team><id>643037</id><n>28</n><type>goal</type><goal_type>p</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>54</elapsed><player1>30909</player1><sortorder>0</sortorder><team>10267</team><id>643352</id><n>32</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>71</elapsed><player1>34582</player1><sortorder>0</sortorder><team>9869</team><id>643517</id><n>35</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>87</elapsed><player1>41468</player1><sortorder>0</sortorder><team>10267</team><id>643747</id><n>37</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>23</value><value>63</value></coordinates><elapsed>28</elapsed><player2>37442</player2><subtype>header</subtype><player1>30893</player1><sortorder>3</sortorder><team>8633</team><id>3745277</id><n>244</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>31</value><value>55</value></coordinates><elapsed>36</elapsed><player2>26166</player2><subtype>distance</subtype><player1>164684</player1><sortorder>1</sortorder><team>8633</team><id>3745379</id><n>246</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>20</value><value>53</value></coordinates><elapsed>41</elapsed><player2>26166</player2><subtype>distance</subtype><player1>30893</player1><sortorder>3</sortorder><team>8633</team><id>3745517</id><n>249</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>51</elapsed><player1>33588</player1><sortorder>0</sortorder><team>9783</team><id>3745987</id><n>260</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>30</value><value>63</value></coordinates><elapsed>66</elapsed><player2>28467</player2><subtype>shot</subtype><player1>31921</player1><sortorder>2</sortorder><team>8633</team><id>3746484</id><n>275</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>31</value><value>63</value></coordinates><elapsed>74</elapsed><player2>191315</player2><subtype>shot</subtype><player1>31921</player1><sortorder>5</sortorder><team>8633</team><id>3746665</id><n>288</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>33</value><value>62</value></coordinates><elapsed>78</elapsed><player2>164684</player2><subtype>shot</subtype><player1>30893</player1><sortorder>1</sortorder><team>8633</team><id>3746719</id><n>287</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>27</value><value>7</value></coordinates><elapsed>84</elapsed><player2>213702</player2><subtype>header</subtype><player1>41268</player1><sortorder>1</sortorder><team>9783</team><id>3746819</id><n>294</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>33</value><value>59</value></coordinates><elapsed>88</elapsed><player2>191315</player2><subtype>volley</subtype><player1>70409</player1><sortorder>1</sortorder><team>8633</team><id>3746900</id><n>299</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>3</elapsed_plus><event_incident_typefk>414</event_incident_typefk><coordinates><value>26</value><value>53</value></coordinates><elapsed>90</elapsed><player2>28467</player2><subtype>deflected</subtype><player1>70409</player1><sortorder>5</sortorder><team>8633</team><id>3746990</id><n>303</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>8</value></coordinates><elapsed>15</elapsed><player2>298915</player2><subtype>shot</subtype><player1>243164</player1><sortorder>3</sortorder><team>8721</team><id>5359604</id><n>802</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>14</value><value>7</value></coordinates><elapsed>17</elapsed><player2>298915</player2><subtype>shot</subtype><player1>58346</player1><sortorder>2</sortorder><team>8721</team><id>5359649</id><n>206</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>32</value><value>64</value></coordinates><elapsed>23</elapsed><player2>37357</player2><subtype>shot</subtype><player1>25819</player1><sortorder>2</sortorder><team>9788</team><id>5359749</id><n>312</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>11</elapsed><player2>41888</player2><subtype>header</subtype><player1>30712</player1><sortorder>0</sortorder><team>9885</team><id>575809</id><n>306</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>131</event_incident_typefk><elapsed>51</elapsed><subtype>loose_ball</subtype><player1>39271</player1><sortorder>4</sortorder><team>8530</team><id>576233</id><n>343</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>393</event_incident_typefk><elapsed>90</elapsed><player2>38827</player2><subtype>shot</subtype><player1>32937</player1><sortorder>6</sortorder><team>9885</team><id>576607</id><n>356</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>65</elapsed><subtype>direct_freekick</subtype><player1>38886</player1><sortorder>0</sortorder><team>9869</team><id>803505</id><n>281</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>77</elapsed><player2>38004</player2><subtype>shot</subtype><player1>38886</player1><sortorder>2</sortorder><team>9869</team><id>803552</id><n>296</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>81</elapsed><player2>37408</player2><subtype>header</subtype><player1>150832</player1><sortorder>2</sortorder><team>8315</team><id>803574</id><n>297</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>20</value><value>6</value></coordinates><elapsed>9</elapsed><subtype>shot</subtype><player1>36784</player1><sortorder>3</sortorder><team>10189</team><id>4425466</id><n>64</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>15</value><value>61</value></coordinates><elapsed>22</elapsed><player2>177720</player2><subtype>shot</subtype><player1>27234</player1><sortorder>2</sortorder><team>10269</team><id>4425666</id><n>125</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>32</value><value>63</value></coordinates><elapsed>51</elapsed><player2>177720</player2><subtype>shot</subtype><player1>281012</player1><sortorder>2</sortorder><team>10269</team><id>4426755</id><n>272</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>19</value><value>5</value></coordinates><elapsed>78</elapsed><player2>27335</player2><subtype>tap_in</subtype><player1>36784</player1><sortorder>2</sortorder><team>10189</team><id>4427487</id><n>409</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>22</value><value>6</value></coordinates><elapsed>89</elapsed><player1>45272</player1><sortorder>4</sortorder><team>10269</team><id>4427959</id><n>503</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>68</elapsed><player2>24159</player2><subtype>shot</subtype><player1>36786</player1><sortorder>4</sortorder><team>8472</team><id>2765997</id><n>325</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>76</elapsed><subtype>shot</subtype><player1>35345</player1><sortorder>12</sortorder><team>8466</team><id>2766113</id><n>334</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>14</value><value>6</value></coordinates><elapsed>45</elapsed><player2>362120</player2><subtype>shot</subtype><player1>41411</player1><sortorder>2</sortorder><team>8543</team><id>5276052</id><n>250</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>7</value></coordinates><elapsed>50</elapsed><player2>362120</player2><subtype>shot</subtype><player1>25594</player1><sortorder>2</sortorder><team>8543</team><id>5276132</id><n>280</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>3</value></coordinates><elapsed>69</elapsed><player2>41411</player2><subtype>shot</subtype><player1>230190</player1><sortorder>3</sortorder><team>8543</team><id>5276232</id><n>356</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><coordinates><value>27</value><value>55</value></coordinates><elapsed>72</elapsed><subtype>direct_freekick</subtype><player1>41329</player1><sortorder>0</sortorder><team>9876</team><id>5276248</id><n>365</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>65</value></coordinates><elapsed>79</elapsed><player2>206695</player2><subtype>shot</subtype><player1>30709</player1><sortorder>1</sortorder><team>9876</team><id>5276287</id><n>398</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>20</value><value>9</value></coordinates><elapsed>82</elapsed><player2>30638</player2><subtype>volley</subtype><player1>488958</player1><sortorder>4</sortorder><team>8543</team><id>5276301</id><n>424</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>90</elapsed><player1>11685</player1><sortorder>2</sortorder><team>8543</team><id>5276333</id><n>471</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>414</event_incident_typefk><elapsed>64</elapsed><player2>30829</player2><subtype>deflected</subtype><player1>27430</player1><sortorder>1</sortorder><team>10260</team><id>911182</id><n>268</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>69</elapsed><player2>27430</player2><subtype>shot</subtype><player1>30829</player1><sortorder>1</sortorder><team>10260</team><id>911249</id><n>273</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>406</event_incident_typefk><elapsed>90</elapsed><player2>35327</player2><subtype>header</subtype><player1>72735</player1><sortorder>1</sortorder><team>10260</team><id>911541</id><n>295</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player1>34633</player1><sortorder>0</sortorder><team>8529</team><id>2450419</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>28</elapsed><player1>79253</player1><sortorder>0</sortorder><team>8529</team><id>2450483</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>26</elapsed><player1>34633</player1><sortorder>0</sortorder><team>8529</team><id>2450490</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>42</elapsed><player1>39638</player1><sortorder>0</sortorder><team>8551</team><id>2450514</id><n>34</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>89</elapsed><player1>155056</player1><sortorder>0</sortorder><team>8529</team><id>2450719</id><n>35</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>42041</player1><sortorder>0</sortorder><team>8551</team><id>2450720</id><n>33</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>69</elapsed><player1>116772</player1><sortorder>0</sortorder><team>9823</team><id>2761930</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>82</elapsed><player1>176300</player1><sortorder>0</sortorder><team>9823</team><id>2761999</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>87</elapsed><player1>147729</player1><sortorder>0</sortorder><team>9823</team><id>2762037</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>62</elapsed><player2>24154</player2><subtype>shot</subtype><player1>27430</player1><sortorder>1</sortorder><team>10260</team><id>774257</id><n>270</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>77</elapsed><player2>24154</player2><subtype>header</subtype><player1>24150</player1><sortorder>1</sortorder><team>10260</team><id>774474</id><n>284</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>13</elapsed><player2>27774</player2><subtype>shot</subtype><player1>30530</player1><sortorder>30</sortorder><team>8721</team><id>1612699</id><n>370</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>15</elapsed><player2>66940</player2><subtype>shot</subtype><player1>129944</player1><sortorder>10</sortorder><team>9788</team><id>1612718</id><n>372</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>32</elapsed><player1>27412</player1><sortorder>2</sortorder><team>9788</team><id>1612823</id><n>387</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><elapsed>45</elapsed><subtype>header</subtype><player1>66940</player1><sortorder>6</sortorder><team>9788</team><id>1612872</id><n>410</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>67</elapsed><player2>38398</player2><subtype>shot</subtype><player1>129944</player1><sortorder>6</sortorder><team>9788</team><id>1612981</id><n>449</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>10</elapsed><player1>40274</player1><sortorder>0</sortorder><team>9931</team><id>5490213</id><n>6</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>13</elapsed><player1>30492</player1><sortorder>0</sortorder><team>9931</team><id>5490230</id><n>8</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><elapsed>22</elapsed><player1>34035</player1><sortorder>0</sortorder><team>9931</team><id>5490268</id><n>11</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>44</elapsed><player1>726956</player1><sortorder>0</sortorder><team>9931</team><id>5490369</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>47</elapsed><player1>186948</player1><sortorder>0</sortorder><team>7896</team><id>5490408</id><n>21</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>8</elapsed><player1>30459</player1><sortorder>0</sortorder><team>9864</team><id>2641707</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>41</elapsed><player1>111975</player1><sortorder>0</sortorder><team>10281</team><id>2641894</id><n>16</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>8</elapsed><player1>24549</player1><sortorder>0</sortorder><team>9882</team><id>620944</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>24</elapsed><player1>33706</player1><sortorder>0</sortorder><team>9882</team><id>621041</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>29</elapsed><player1>27690</player1><sortorder>0</sortorder><team>9804</team><id>621058</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>69</elapsed><player1>32748</player1><sortorder>0</sortorder><team>9882</team><id>621466</id><n>29</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>1</elapsed><player2>26171</player2><subtype>shot</subtype><player1>24157</player1><sortorder>2</sortorder><team>8472</team><id>987257</id><n>192</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>64</elapsed><player2>25150</player2><subtype>shot</subtype><player1>23949</player1><sortorder>0</sortorder><team>8472</team><id>987812</id><n>246</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>74</elapsed><player1>23949</player1><sortorder>2</sortorder><team>8472</team><id>987900</id><n>254</n><type>goal</type><goal_type>p</goal_type></value><value><comment>dg</comment><event_incident_typefk>298</event_incident_typefk><elapsed>85</elapsed><subtype>shot</subtype><player1>30988</player1><sortorder>1</sortorder><team>8472</team><id>987982</id><n>173</n><type>goal</type><goal_type>dg</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>88</elapsed><player2>24157</player2><subtype>shot</subtype><player1>23949</player1><sortorder>1</sortorder><team>8472</team><id>988000</id><n>263</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>42</elapsed><player1>41269</player1><sortorder>0</sortorder><team>9804</team><id>2606641</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>75</elapsed><player1>35421</player1><sortorder>0</sortorder><team>8524</team><id>2606848</id><n>23</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>87</elapsed><player1>36121</player1><sortorder>0</sortorder><team>9804</team><id>2606903</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>21</value><value>4</value></coordinates><elapsed>64</elapsed><player2>230190</player2><subtype>tap_in</subtype><player1>41411</player1><sortorder>2</sortorder><team>8543</team><id>4771468</id><n>329</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>22</value><value>4</value></coordinates><elapsed>73</elapsed><subtype>shot</subtype><player1>41411</player1><sortorder>2</sortorder><team>8543</team><id>4771564</id><n>372</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>36</elapsed><player1>75004</player1><sortorder>0</sortorder><team>8370</team><id>4940541</id><n>254</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><coordinates><value>26</value><value>2</value></coordinates><elapsed>76</elapsed><player2>210065</player2><subtype>tap_in</subtype><player1>46808</player1><sortorder>2</sortorder><team>8370</team><id>4941013</id><n>429</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>13</value></coordinates><elapsed>78</elapsed><player2>427893</player2><subtype>shot</subtype><player1>46808</player1><sortorder>2</sortorder><team>8370</team><id>4941031</id><n>449</n><type>goal</type><goal_type>n</goal_type></value><value><comment>npm</comment><elapsed_plus>3</elapsed_plus><event_incident_typefk>348</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>90</elapsed><subtype>saved_back_into_play</subtype><player1>452243</player1><sortorder>10</sortorder><team>8558</team><id>4941154</id><n>515</n><type>goal</type><goal_type>npm</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>72</event_incident_typefk><elapsed>47</elapsed><sortorder>2</sortorder><team>9911</team><id>734512</id><n>287</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>34</value><value>6</value></coordinates><elapsed>8</elapsed><subtype>shot</subtype><player1>242783</player1><sortorder>1</sortorder><team>10233</team><id>5068660</id><n>141</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>33</value><value>65</value></coordinates><elapsed>58</elapsed><player2>299374</player2><subtype>shot</subtype><player1>39447</player1><sortorder>1</sortorder><team>208931</team><id>5070134</id><n>427</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>15</value><value>65</value></coordinates><elapsed>81</elapsed><player2>39447</player2><subtype>shot</subtype><player1>30906</player1><sortorder>0</sortorder><team>208931</team><id>5070700</id><n>621</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>63</value></coordinates><elapsed>55</elapsed><player2>26326</player2><subtype>shot</subtype><player1>210184</player1><sortorder>3</sortorder><team>9941</team><id>5369039</id><n>581</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>288</event_incident_typefk><coordinates><value>25</value><value>7</value></coordinates><elapsed>74</elapsed><subtype>deflected</subtype><player1>32627</player1><sortorder>4</sortorder><team>8592</team><id>5369446</id><n>969</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>130</event_incident_typefk><elapsed>8</elapsed><subtype>direct_freekick</subtype><player1>41068</player1><sortorder>0</sortorder><team>9925</team><id>1073790</id><n>222</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>43</elapsed><player2>32616</player2><subtype>header</subtype><player1>34177</player1><sortorder>1</sortorder><team>8548</team><id>1073948</id><n>259</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>45</elapsed><player2>41068</player2><subtype>header</subtype><player1>26494</player1><sortorder>1</sortorder><team>9925</team><id>1073954</id><n>261</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>10</elapsed><player2>24773</player2><subtype>header</subtype><player1>30830</player1><sortorder>1</sortorder><team>10194</team><id>2095344</id><n>175</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>15</elapsed><player2>31435</player2><subtype>shot</subtype><player1>30843</player1><sortorder>1</sortorder><team>9825</team><id>2095444</id><n>181</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>7</elapsed><player1>25986</player1><sortorder>0</sortorder><team>10205</team><id>847965</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>49</elapsed><player1>25986</player1><sortorder>0</sortorder><team>10205</team><id>848412</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>58</elapsed><player1>38699</player1><sortorder>0</sortorder><team>10205</team><id>848520</id><n>24</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>62</elapsed><player1>19243</player1><sortorder>0</sortorder><team>10281</team><id>848552</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>25</value><value>65</value></coordinates><elapsed>1</elapsed><player2>242709</player2><subtype>shot</subtype><player1>71605</player1><sortorder>6</sortorder><team>8226</team><id>4389979</id><n>361</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>24</elapsed><player1>94916</player1><sortorder>3</sortorder><team>9904</team><id>4390403</id><n>212</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>21</value><value>64</value></coordinates><elapsed>83</elapsed><player2>36774</player2><subtype>header</subtype><player1>94885</player1><sortorder>8</sortorder><team>8226</team><id>4392507</id><n>619</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>29</elapsed><player1>34233</player1><sortorder>0</sortorder><team>8603</team><id>606568</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>31</elapsed><player1>42173</player1><sortorder>0</sortorder><team>8603</team><id>606588</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>69</elapsed><player1>33655</player1><sortorder>0</sortorder><team>8603</team><id>606917</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>72</elapsed><player1>56686</player1><sortorder>0</sortorder><team>8661</team><id>606931</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>75</elapsed><player1>25574</player1><sortorder>0</sortorder><team>8661</team><id>606949</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>82</elapsed><player1>56686</player1><sortorder>0</sortorder><team>8661</team><id>606991</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>393</event_incident_typefk><coordinates><value>24</value><value>5</value></coordinates><elapsed>45</elapsed><player2>210184</player2><subtype>shot</subtype><player1>21414</player1><sortorder>8</sortorder><team>9941</team><id>4348460</id><n>255</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>4</elapsed><player1>165525</player1><sortorder>0</sortorder><team>6631</team><id>4191162</id><n>10</n><type>goal</type><goal_type>o</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><elapsed>62</elapsed><player1>150201</player1><sortorder>0</sortorder><team>8640</team><id>4192394</id><n>45</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>70</elapsed><player2>289441</player2><player1>184821</player1><sortorder>0</sortorder><team>8640</team><id>4192483</id><n>43</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>27</value><value>4</value></coordinates><elapsed>25</elapsed><player2>474672</player2><subtype>header</subtype><player1>562062</player1><sortorder>3</sortorder><team>9864</team><id>4122715</id><n>137</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>13</elapsed><player1>94652</player1><sortorder>0</sortorder><team>9789</team><id>981509</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>54</elapsed><player1>35990</player1><sortorder>0</sortorder><team>9789</team><id>982025</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>70</elapsed><player1>35990</player1><sortorder>0</sortorder><team>9789</team><id>982159</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>80</event_incident_typefk><elapsed>45</elapsed><subtype>shot</subtype><player1>176889</player1><sortorder>7</sortorder><team>8344</team><id>3309273</id><n>273</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>59</elapsed><player2>30839</player2><subtype>shot</subtype><player1>128827</player1><sortorder>4</sortorder><team>9879</team><id>3309493</id><n>299</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><elapsed>67</elapsed><player2>149917</player2><subtype>header</subtype><player1>176889</player1><sortorder>5</sortorder><team>8344</team><id>3309584</id><n>308</n><type>goal</type><goal_type>n</goal_type></value><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>71</elapsed><player1>31290</player1><sortorder>20</sortorder><team>9879</team><id>3309637</id><n>319</n><type>goal</type><goal_type>o</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>41</elapsed><player1>25462</player1><sortorder>0</sortorder><team>8661</team><id>1948481</id><n>26</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>52</elapsed><player1>38160</player1><sortorder>0</sortorder><team>8661</team><id>1948679</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>65</elapsed><player1>25462</player1><sortorder>0</sortorder><team>8661</team><id>1948830</id><n>29</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>67</elapsed><player1>33849</player1><sortorder>0</sortorder><team>8661</team><id>1948831</id><n>30</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>31</value><value>61</value></coordinates><elapsed>35</elapsed><player2>131991</player2><subtype>shot</subtype><player1>79246</player1><sortorder>1</sortorder><team>7794</team><id>4315726</id><n>126</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>69</elapsed><player1>18576</player1><sortorder>1</sortorder><team>10249</team><id>4316458</id><n>327</n><type>goal</type><goal_type>p</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>72</elapsed><player1>40659</player1><sortorder>0</sortorder><team>10249</team><id>4316502</id><n>347</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>2</elapsed_plus><event_incident_typefk>39</event_incident_typefk><coordinates><value>28</value><value>19</value></coordinates><elapsed>90</elapsed><subtype>distance</subtype><player1>355901</player1><sortorder>7</sortorder><team>10249</team><id>4316864</id><n>456</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>29</elapsed><player1>31304</player1><sortorder>0</sortorder><team>9804</team><id>391443</id><n>19</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>33</elapsed><player1>37525</player1><sortorder>0</sortorder><team>9804</team><id>391454</id><n>20</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>74</elapsed><player1>27690</player1><sortorder>0</sortorder><team>9804</team><id>391894</id><n>23</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>7</value></coordinates><elapsed>13</elapsed><player2>215725</player2><subtype>shot</subtype><player1>166595</player1><sortorder>5</sortorder><team>7943</team><id>3847708</id><n>347</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>31</value><value>58</value></coordinates><elapsed>19</elapsed><player2>38817</player2><subtype>distance</subtype><player1>248453</player1><sortorder>2</sortorder><team>9885</team><id>3847748</id><n>349</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>rp</comment><event_incident_typefk>486</event_incident_typefk><elapsed>15</elapsed><sortorder>0</sortorder><team>9875</team><id>1801816</id><n>42</n><type>goal</type><goal_type>rp</goal_type></value><value><comment>npm</comment><event_incident_typefk>22</event_incident_typefk><elapsed>16</elapsed><subtype>missed</subtype><player1>41658</player1><sortorder>0</sortorder><team>9875</team><id>1801827</id><n>43</n><type>goal</type><goal_type>npm</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>44</event_incident_typefk><elapsed>23</elapsed><subtype>header</subtype><player1>41658</player1><sortorder>2</sortorder><team>9875</team><id>1801897</id><n>246</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>40</elapsed><player2>39535</player2><subtype>shot</subtype><player1>25597</player1><sortorder>3</sortorder><team>9875</team><id>1802073</id><n>259</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>48</elapsed><player2>49939</player2><subtype>shot</subtype><player1>41411</player1><sortorder>1</sortorder><team>9885</team><id>1802231</id><n>267</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>68</elapsed><player2>39535</player2><subtype>shot</subtype><player1>25597</player1><sortorder>2</sortorder><team>9875</team><id>1802409</id><n>293</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>72</elapsed><player2>41411</player2><subtype>shot</subtype><player1>68436</player1><sortorder>1</sortorder><team>9885</team><id>1802453</id><n>288</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>79</elapsed><player2>41884</player2><subtype>shot</subtype><player1>39232</player1><sortorder>1</sortorder><team>9885</team><id>1802538</id><n>300</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>41</elapsed><player1>156556</player1><sortorder>0</sortorder><team>9783</team><id>2352510</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>81</elapsed><player1>41542</player1><sortorder>0</sortorder><team>7878</team><id>2352955</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>57</elapsed><player2>143793</player2><subtype>shot</subtype><player1>37436</player1><sortorder>6</sortorder><team>9825</team><id>3219408</id><n>225</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>62</elapsed><subtype>shot</subtype><player1>37436</player1><sortorder>2</sortorder><team>9825</team><id>3219450</id><n>224</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>75</elapsed><player1>37441</player1><sortorder>0</sortorder><team>9783</team><id>511842</id><n>27</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>25</elapsed><player1>93447</player1><sortorder>1</sortorder><team>9823</team><id>4502859</id><n>72</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>48</elapsed><player2>93447</player2><subtype>shot</subtype><player1>30872</player1><sortorder>2</sortorder><team>9823</team><id>4503369</id><n>161</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>8</elapsed><player1>141145</player1><sortorder>0</sortorder><team>8165</team><id>2038166</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>150292</player1><sortorder>0</sortorder><team>8165</team><id>2038703</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>53</elapsed><player1>188498</player1><sortorder>0</sortorder><team>8358</team><id>2038956</id><n>28</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player1>27512</player1><sortorder>0</sortorder><team>8358</team><id>2039246</id><n>31</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>19</value><value>9</value></coordinates><elapsed>52</elapsed><subtype>shot</subtype><player1>167634</player1><sortorder>3</sortorder><team>9857</team><id>4982290</id><n>321</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>11</value></coordinates><elapsed>58</elapsed><player2>500502</player2><subtype>shot</subtype><player1>154249</player1><sortorder>5</sortorder><team>9857</team><id>4982457</id><n>361</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><coordinates><value>20</value><value>19</value></coordinates><elapsed>85</elapsed><player2>199833</player2><subtype>distance</subtype><player1>27663</player1><sortorder>0</sortorder><team>9857</team><id>4982975</id><n>507</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>6</elapsed><player2>37506</player2><subtype>shot</subtype><player1>39122</player1><sortorder>1</sortorder><team>10267</team><id>2081300</id><n>157</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>63</elapsed><player2>150649</player2><subtype>volley</subtype><player1>93480</player1><sortorder>2</sortorder><team>10267</team><id>2081470</id><n>208</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>721</event_incident_typefk><elapsed>86</elapsed><player2>46384</player2><subtype>tap_in</subtype><player1>37506</player1><sortorder>1</sortorder><team>10267</team><id>2081517</id><n>235</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>88</elapsed><subtype>shot</subtype><player1>46384</player1><sortorder>1</sortorder><team>10267</team><id>2081519</id><n>238</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>51</elapsed><player2>40060</player2><player1>95955</player1><sortorder>0</sortorder><team>8592</team><id>3479558</id><n>14</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>31</elapsed><player1>36035</player1><sortorder>0</sortorder><team>8165</team><id>2651430</id><n>16</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>69</elapsed><player1>147735</player1><sortorder>0</sortorder><team>8165</team><id>2651850</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>87</elapsed><player1>37042</player1><sortorder>0</sortorder><team>8165</team><id>2652143</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>17</elapsed><player1>33444</player1><sortorder>0</sortorder><team>10242</team><id>2762861</id><n>13</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>6</elapsed><player1>41404</player1><sortorder>0</sortorder><team>8529</team><id>963226</id><n>17</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>39</elapsed><player1>41411</player1><sortorder>0</sortorder><team>8529</team><id>963460</id><n>20</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>34</elapsed><player1>33116</player1><sortorder>0</sortorder><team>10242</team><id>2520096</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>39</elapsed><player1>26420</player1><sortorder>0</sortorder><team>10242</team><id>2520099</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>45</elapsed><player1>38435</player1><sortorder>0</sortorder><team>10242</team><id>2520101</id><n>23</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>154233</player1><sortorder>0</sortorder><team>8576</team><id>2520166</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>37567</player1><sortorder>0</sortorder><team>8576</team><id>2520178</id><n>26</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>20</elapsed><player1>172949</player1><sortorder>0</sortorder><team>8634</team><id>2700950</id><n>27</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>39</elapsed><player1>213704</player1><sortorder>0</sortorder><team>8634</team><id>2701083</id><n>28</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>53</elapsed><player1>213704</player1><sortorder>0</sortorder><team>8634</team><id>2701172</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>19</elapsed><player1>74757</player1><sortorder>0</sortorder><team>10268</team><id>3219873</id><n>19</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player1>80492</player1><sortorder>0</sortorder><team>10268</team><id>3220042</id><n>25</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>28</value><value>61</value></coordinates><elapsed>23</elapsed><player2>32748</player2><subtype>shot</subtype><player1>470868</player1><sortorder>2</sortorder><team>10167</team><id>3793825</id><n>245</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><coordinates><value>25</value><value>9</value></coordinates><elapsed>28</elapsed><player2>192325</player2><subtype>volley</subtype><player1>27734</player1><sortorder>5</sortorder><team>8600</team><id>3793874</id><n>252</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>391</event_incident_typefk><coordinates><value>26</value><value>8</value></coordinates><elapsed>45</elapsed><player2>275034</player2><subtype>loose_ball</subtype><player1>27734</player1><sortorder>2</sortorder><team>8600</team><id>3793988</id><n>267</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><elapsed_plus>4</elapsed_plus><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>45</elapsed><player1>32748</player1><sortorder>12</sortorder><team>10167</team><id>3794013</id><n>272</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>390</event_incident_typefk><coordinates><value>24</value><value>7</value></coordinates><elapsed>58</elapsed><player2>275034</player2><subtype>bicycle_kick</subtype><player1>179791</player1><sortorder>1</sortorder><team>8600</team><id>3794144</id><n>286</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>11</value><value>9</value></coordinates><elapsed>84</elapsed><subtype>shot</subtype><player1>38920</player1><sortorder>3</sortorder><team>8600</team><id>3794360</id><n>317</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>57</elapsed><player2>237631</player2><player1>26155</player1><sortorder>0</sortorder><team>9831</team><id>3370354</id><n>31</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>90</elapsed><player1>46349</player1><sortorder>1</sortorder><team>9853</team><id>3370673</id><n>28</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>29</value><value>4</value></coordinates><elapsed>35</elapsed><player2>33991</player2><subtype>header</subtype><player1>101103</player1><sortorder>1</sortorder><team>8456</team><id>5529216</id><n>135</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>8</value></coordinates><elapsed>43</elapsed><player1>37412</player1><sortorder>0</sortorder><team>8456</team><id>5529270</id><n>160</n><type>goal</type><goal_type>p</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>23</value><value>7</value></coordinates><elapsed>64</elapsed><player2>30509</player2><subtype>shot</subtype><player1>643709</player1><sortorder>2</sortorder><team>8456</team><id>5529502</id><n>296</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>8</value></coordinates><elapsed>74</elapsed><player2>143365</player2><subtype>shot</subtype><player1>643709</player1><sortorder>3</sortorder><team>8456</team><id>5529564</id><n>347</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>24</elapsed><player1>210404</player1><sortorder>0</sortorder><team>9853</team><id>3180011</id><n>18</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties></stats><event_incident_typefk>20</event_incident_typefk><elapsed>83</elapsed><player1>26374</player1><sortorder>0</sortorder><team>9853</team><id>3180437</id><n>20</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>21</value><value>64</value></coordinates><elapsed>50</elapsed><subtype>shot</subtype><player1>66940</player1><sortorder>4</sortorder><team>8406</team><id>4127850</id><n>320</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>79</elapsed><player1>96652</player1><sortorder>0</sortorder><team>8603</team><id>2009063</id><n>19</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>90</elapsed><player1>23853</player1><sortorder>0</sortorder><team>8558</team><id>2009133</id><n>17</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>28</elapsed><player1>114558</player1><sortorder>0</sortorder><team>8686</team><id>3114339</id><n>21</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>63</elapsed><player1>41269</player1><sortorder>0</sortorder><team>9804</team><id>3114369</id><n>22</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><coordinates><value>23</value><value>65</value></coordinates><elapsed>11</elapsed><player1>30627</player1><sortorder>2</sortorder><team>8455</team><id>3714905</id><n>209</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>406</event_incident_typefk><coordinates><value>23</value><value>6</value></coordinates><elapsed>45</elapsed><player2>30613</player2><subtype>header</subtype><player1>19243</player1><sortorder>2</sortorder><team>8455</team><id>3715593</id><n>242</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>6</value></coordinates><elapsed>56</elapsed><player2>30613</player2><subtype>shot</subtype><player1>19243</player1><sortorder>9</sortorder><team>8455</team><id>3716191</id><n>264</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>20</value><value>4</value></coordinates><elapsed>67</elapsed><player2>79574</player2><subtype>shot</subtype><player1>19243</player1><sortorder>3</sortorder><team>8455</team><id>3716483</id><n>274</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>17</value><value>7</value></coordinates><elapsed>81</elapsed><player2>128864</player2><subtype>shot</subtype><player1>39987</player1><sortorder>1</sortorder><team>8455</team><id>3716736</id><n>283</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>21</value><value>57</value></coordinates><elapsed>86</elapsed><player2>143365</player2><subtype>shot</subtype><player1>127130</player1><sortorder>3</sortorder><team>10003</team><id>3716859</id><n>288</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>53</elapsed><subtype>shot</subtype><player1>41294</player1><sortorder>1</sortorder><team>9869</team><id>1005564</id><n>241</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>55</elapsed><subtype>shot</subtype><player1>30840</player1><sortorder>2</sortorder><team>8633</team><id>1005568</id><n>293</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>57</elapsed><player2>30893</player2><subtype>shot</subtype><player1>30889</player1><sortorder>3</sortorder><team>8633</team><id>1005578</id><n>260</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>39</event_incident_typefk><elapsed>68</elapsed><subtype>distance</subtype><player1>25759</player1><sortorder>0</sortorder><team>8633</team><id>1005616</id><n>291</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><coordinates><value>19</value><value>64</value></coordinates><elapsed>40</elapsed><player2>215299</player2><subtype>shot</subtype><player1>129391</player1><sortorder>0</sortorder><team>9847</team><id>4364760</id><n>551</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><elapsed_plus>1</elapsed_plus><event_incident_typefk>393</event_incident_typefk><coordinates><value>27</value><value>6</value></coordinates><elapsed>45</elapsed><player2>491883</player2><subtype>shot</subtype><player1>26155</player1><sortorder>4</sortorder><team>9831</team><id>4364865</id><n>263</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><coordinates><value>29</value><value>63</value></coordinates><elapsed>63</elapsed><subtype>shot</subtype><player1>129391</player1><sortorder>2</sortorder><team>9847</team><id>4365297</id><n>394</n><type>goal</type><goal_type>n</goal_type></value><value><comment>p</comment><stats><penalties>1</penalties><goals>1</goals></stats><event_incident_typefk>20</event_incident_typefk><coordinates><value>23</value><value>62</value></coordinates><elapsed>69</elapsed><player1>49677</player1><sortorder>0</sortorder><team>9847</team><id>4365377</id><n>416</n><type>goal</type><goal_type>p</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>407</event_incident_typefk><elapsed>5</elapsed><player2>23988</player2><subtype>distance</subtype><player1>41044</player1><sortorder>3</sortorder><team>8633</team><id>834433</id><n>269</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>25</elapsed><player2>26166</player2><subtype>shot</subtype><player1>28467</player1><sortorder>1</sortorder><team>8633</team><id>834486</id><n>295</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>64</elapsed><subtype>shot</subtype><player1>25759</player1><sortorder>3</sortorder><team>8633</team><id>834615</id><n>363</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>79</elapsed><player2>30689</player2><subtype>shot</subtype><player1>38460</player1><sortorder>2</sortorder><team>9906</team><id>834653</id><n>381</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>81</elapsed><player2>31498</player2><subtype>shot</subtype><player1>37412</player1><sortorder>1</sortorder><team>9906</team><id>834656</id><n>385</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>24</elapsed><subtype>shot</subtype><player1>26169</player1><sortorder>1</sortorder><team>8658</team><id>1350749</id><n>247</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>411</event_incident_typefk><elapsed>68</elapsed><player2>23464</player2><subtype>volley</subtype><player1>21853</player1><sortorder>0</sortorder><team>8483</team><id>1351055</id><n>298</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>89</elapsed><player2>34193</player2><subtype>shot</subtype><player1>23837</player1><sortorder>3</sortorder><team>8658</team><id>1351203</id><n>319</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            1
<goal><value><comment>o</comment><stats><owngoals>1</owngoals></stats><event_incident_typefk>115</event_incident_typefk><elapsed>56</elapsed><player1>22283</player1><sortorder>0</sortorder><team>9876</team><id>2957736</id><n>24</n><type>goal</type><goal_type>o</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>59</elapsed><player1>96398</player1><sortorder>0</sortorder><team>8686</team><id>2957756</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>66</elapsed><player1>155738</player1><sortorder>0</sortorder><team>8686</team><id>2957795</id><n>18</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>43</elapsed><player1>25595</player1><sortorder>0</sortorder><team>9857</team><id>880252</id><n>25</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>57</elapsed><player1>27693</player1><sortorder>0</sortorder><team>10167</team><id>880395</id><n>22</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>86</elapsed><player1>27686</player1><sortorder>0</sortorder><team>10167</team><id>880683</id><n>24</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>71</elapsed><player1>41292</player1><sortorder>0</sortorder><team>8581</team><id>3462040</id><n>30</n><type>goal</type><goal_type>n</goal_type></value><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>71</event_incident_typefk><elapsed>81</elapsed><player2>25462</player2><player1>42873</player1><sortorder>0</sortorder><team>8581</team><id>3462042</id><n>33</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>393</event_incident_typefk><elapsed>66</elapsed><player2>190872</player2><subtype>shot</subtype><player1>37234</player1><sortorder>4</sortorder><team>8466</team><id>3208305</id><n>294</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                1
<goal><value><comment>n</comment><stats><goals>1</goals><shoton>1</shoton></stats><event_incident_typefk>80</event_incident_typefk><elapsed>28</elapsed><subtype>shot</subtype><player1>26151</player1><sortorder>6</sortorder><team>8668</team><id>2670851</id><n>274</n><type>goal</type><goal_type>n</goal_type></value></goal>                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          1
Name: goal, Length: 13225, dtype: int64

Duplicate rows in the matches dataset

In [9]:
#Find number of duplicate rows
sum(matches.duplicated())
Out[9]:
0

Check if the number of games each team played is consistent for each match.

In [10]:
# Games per league, per match_season and per team
games_played = matches.groupby(['name', 'season', 'team_long_name']).count()
games_played
Out[10]:
id country_id league_id stage date match_api_id home_team_api_id away_team_api_id home_team_goal away_team_goal home_player_X1 home_player_X2 home_player_X3 home_player_X4 home_player_X5 home_player_X6 home_player_X7 home_player_X8 home_player_X9 home_player_X10 home_player_X11 away_player_X1 away_player_X2 away_player_X3 away_player_X4 away_player_X5 away_player_X6 away_player_X7 away_player_X8 away_player_X9 away_player_X10 away_player_X11 home_player_Y1 home_player_Y2 home_player_Y3 home_player_Y4 home_player_Y5 home_player_Y6 home_player_Y7 home_player_Y8 home_player_Y9 home_player_Y10 home_player_Y11 away_player_Y1 away_player_Y2 away_player_Y3 away_player_Y4 away_player_Y5 away_player_Y6 away_player_Y7 away_player_Y8 away_player_Y9 away_player_Y10 away_player_Y11 home_player_1 home_player_2 home_player_3 home_player_4 home_player_5 home_player_6 home_player_7 home_player_8 home_player_9 home_player_10 home_player_11 away_player_1 away_player_2 away_player_3 away_player_4 away_player_5 away_player_6 away_player_7 away_player_8 away_player_9 away_player_10 away_player_11 goal shoton shotoff foulcommit card cross corner possession B365H B365D B365A BWH BWD BWA IWH IWD IWA LBH LBD LBA PSH PSD PSA WHH WHD WHA SJH SJD SJA VCH VCD VCA GBH GBD GBA BSH BSD BSA id.1 country_id.1 id.2 name.1 id.3 team_api_id team_fifa_api_id team_short_name id.4 team_api_id.1 team_fifa_api_id.1 team_long_name.1 team_short_name.1
name season team_long_name
Belgium Jupiler League 2008/2009 Beerschot AC 17 17 17 17 17 17 17 17 17 17 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 3 2 5 5 5 5 5 5 5 5 5 5 5 4 4 5 5 3 5 5 0 0 0 0 0 0 0 0 16 16 16 16 16 16 16 16 16 16 16 16 0 0 0 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 17 17 17 17 17 17 17 17 17 17 15 17 17
Club Brugge KV 17 17 17 17 17 17 17 17 17 17 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 4 5 5 4 4 6 5 5 5 6 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 15 17 17
FCV Dender EH 17 17 17 17 17 17 17 17 17 17 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 4 5 6 5 3 5 6 5 5 5 4 5 6 6 6 5 5 6 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 17 17 17 16 17 17
KAA Gent 17 17 17 17 17 17 17 17 17 17 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 4 4 4 4 4 4 4 4 4 4 3 4 4 4 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 15 17 17
KRC Genk 17 17 17 17 17 17 17 17 17 17 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 5 5 6 4 6 6 5 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 15 17 17
KSV Cercle Brugge 17 17 17 17 17 17 17 17 17 17 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 4 4 5 5 4 4 4 4 0 0 0 0 0 0 0 0 16 16 16 16 16 16 16 16 16 15 15 15 0 0 0 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 17 17 17 17 17 17 17 17 17 17 15 17 17
KSV Roeselare 17 17 17 17 17 17 17 17 17 17 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 5 5 5 4 5 5 5 4 5 4 5 4 4 0 0 0 0 0 0 0 0 17 17 17 16 16 16 17 17 17 16 16 16 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 15 17 17
KV Kortrijk 17 17 17 17 17 17 17 17 17 17 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 4 4 5 5 5 3 5 5 5 5 4 4 5 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 15 17 17
KV Mechelen 17 17 17 17 17 17 17 17 17 17 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 4 4 6 6 6 5 6 6 6 6 5 6 5 5 5 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 17 17 17 17 17 17 17 17 17 17 15 17 17
KVC Westerlo 17 17 17 17 17 17 17 17 17 17 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 3 5 5 3 5 5 5 5 5 5 5 5 4 5 5 5 5 4 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 15 17 17
RAEC Mons 17 17 17 17 17 17 17 17 17 17 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 4 3 5 2 5 5 4 5 4 4 5 5 4 5 5 5 4 3 4 5 0 0 0 0 0 0 0 0 16 16 16 16 16 16 16 16 16 16 16 16 0 0 0 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 17 17 17 17 17 17 17 17 17 17 15 17 17
RSC Anderlecht 17 17 17 17 17 17 17 17 17 17 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 4 5 4 5 5 4 4 5 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 15 17 17
Royal Excel Mouscron 17 17 17 17 17 17 17 17 17 17 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 3 6 6 5 0 1 2 5 3 4 6 6 5 6 6 6 6 4 6 6 5 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 16 16 16 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 15 17 17
SV Zulte-Waregem 17 17 17 17 17 17 17 17 17 17 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 5 5 6 5 6 6 5 5 6 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 15 17 17
Sporting Charleroi 17 17 17 17 17 17 17 17 17 17 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 0 2 6 6 6 6 5 6 6 6 5 5 5 6 6 5 6 6 6 5 5 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 15 17 17
Sporting Lokeren 17 17 17 17 17 17 17 17 17 17 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 4 6 3 6 6 4 6 5 5 3 5 6 6 6 5 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 15 17 17
Standard de Liège 17 17 17 17 17 17 17 17 17 17 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 4 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 5 6 6 5 6 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 15 17 17
Tubize 17 17 17 17 17 17 17 17 17 17 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 1 5 5 5 2 5 4 5 4 3 4 5 5 5 5 4 5 5 0 0 0 0 0 0 0 0 17 17 17 17 17 17 15 15 15 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 17 17 17 16 17 17
2009/2010 Beerschot AC 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 13 14 13 14 14 13 14 13 14 12 0 0 0 0 0 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
Club Brugge KV 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 13 14 14 12 14 13 13 13 13 13 0 0 0 0 0 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
KAA Gent 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 12 13 14 14 14 14 14 14 14 13 14 13 14 14 13 14 14 14 14 0 0 0 0 0 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
KRC Genk 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 12 13 10 14 14 14 14 14 14 14 14 12 14 14 14 14 12 14 13 14 14 0 0 0 0 0 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
KSV Cercle Brugge 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 13 14 14 14 14 14 14 14 13 14 0 0 0 0 0 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
KSV Roeselare 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 5 12 14 14 12 14 11 12 13 14 14 13 14 14 14 14 13 13 14 14 14 0 0 0 0 0 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
KV Kortrijk 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 13 14 14 14 14 14 14 14 13 14 14 14 13 14 13 13 13 14 13 14 13 0 0 0 0 0 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
KV Mechelen 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 13 13 14 14 14 14 14 13 14 14 13 13 13 13 14 14 14 13 14 14 0 0 0 0 0 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
KVC Westerlo 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 7 14 14 14 14 14 14 14 13 14 13 13 14 14 13 13 13 12 0 0 0 0 0 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
RSC Anderlecht 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 13 14 14 14 14 14 14 14 14 14 0 0 0 0 0 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
SV Zulte-Waregem 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 12 14 13 14 13 14 14 14 14 13 0 0 0 0 0 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
Sint-Truidense VV 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 13 13 14 12 12 10 14 8 14 13 14 14 14 13 14 11 13 14 14 0 0 0 0 0 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
Sporting Charleroi 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 0 14 14 13 13 14 14 12 14 14 14 13 13 14 14 14 14 14 13 14 14 0 0 0 0 0 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 13 13 13 14 14 14 14 14 14 14 14 14 14 14 14 14
Sporting Lokeren 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 13 14 14 14 14 13 13 14 13 14 14 13 14 13 14 13 14 14 0 0 0 0 0 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
Standard de Liège 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 12 14 13 14 13 14 13 12 14 14 0 0 0 0 0 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14
2010/2011 Beerschot AC 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
Club Brugge KV 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 14 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 14 14 14 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
KAA Gent 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 14 15 14 15 15 15 15 15 14 15 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
KAS Eupen 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 14 14 14 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
KRC Genk 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15
KSV Cercle Brugge 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15
KV Kortrijk 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 14 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 14 14 14 13 13 13 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15
KV Mechelen 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 14 14 15 15 15 14 15 14 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
KVC Westerlo 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
Lierse SK 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 14 15 15 14 14 15 15 15 15 15 15 15 14 14 14 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 14 14 14 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15
RSC Anderlecht 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 14 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
SV Zulte-Waregem 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 14 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
Sint-Truidense VV 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 14 14 15 15 15 14 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 14 14 14 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15
Sporting Charleroi 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 13 15 10 15 15 15 14 13 14 15 15 15 15 14 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 14 14 14 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
Sporting Lokeren 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 14 14 14 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
Standard de Liège 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 15 15 15 14 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 14 14 14 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
2011/2012 Beerschot AC 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 14 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15
Club Brugge KV 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
KAA Gent 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 14 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
KRC Genk 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
KSV Cercle Brugge 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 15 14 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
KV Kortrijk 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
KV Mechelen 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
KVC Westerlo 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 14 15 14 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
Lierse SK 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
Oud-Heverlee Leuven 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 14 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
RAEC Mons 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 0 0 0 0 0 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15
RSC Anderlecht 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
SV Zulte-Waregem 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 15 15 15 15 14 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
Sint-Truidense VV 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
Sporting Lokeren 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 14 15 15 15 15 15 13 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
Standard de Liège 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
2012/2013 Beerschot AC 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15
Club Brugge KV 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
KAA Gent 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
KRC Genk 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15
KSV Cercle Brugge 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
KV Kortrijk 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
KV Mechelen 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
Lierse SK 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
Oud-Heverlee Leuven 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
RAEC Mons 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 13 15 15 15 15 15 15 15 15 15 15 15 15 15
RSC Anderlecht 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 13 13 13 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
SV Zulte-Waregem 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
Sporting Charleroi 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 14 14 14 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15
Sporting Lokeren 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 12 15 14 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
Standard de Liège 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15
Waasland-Beveren 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
2013/2014 KAA Gent 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 3 3 3 3 3
KV Oostende 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 3 3 3 3 3
Lierse SK 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 3 3 3 3 3
Waasland-Beveren 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 3 3 3 3 3 3 3 3 3 3
2014/2015 Club Brugge KV 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 3 3 3 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
KAA Gent 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 4 4 4 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
KRC Genk 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 4 4 4 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
KSV Cercle Brugge 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 4 4 4 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
KV Kortrijk 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 4 4 4 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
KV Mechelen 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 4 4 4 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
KV Oostende 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 3 3 3 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
KVC Westerlo 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 15 15 15 3 3 3 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Lierse SK 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 14 14 15 15 15 15 15 15 15 15 15 15 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 15 15 15 4 4 4 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
RSC Anderlecht 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 3 3 3 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Royal Excel Mouscron 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 13 15 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 3 3 3 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
SV Zulte-Waregem 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 4 4 4 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Sporting Charleroi 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 14 14 14 15 15 15 14 14 14 15 15 15 3 3 3 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Sporting Lokeren 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 14 15 12 13 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 3 3 3 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Standard de Liège 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 4 4 4 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Waasland-Beveren 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 3 3 3 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
2015/2016 Club Brugge KV 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
KAA Gent 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
KRC Genk 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
KV Kortrijk 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
KV Mechelen 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
KV Oostende 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
KVC Westerlo 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Oud-Heverlee Leuven 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 9 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
RSC Anderlecht 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Royal Excel Mouscron 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
SV Zulte-Waregem 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Sint-Truidense VV 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Sporting Charleroi 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Sporting Lokeren 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Standard de Liège 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Waasland-Beveren 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
England Premier League 2008/2009 Arsenal 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Aston Villa 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Blackburn Rovers 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 18 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Bolton Wanderers 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Chelsea 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Everton 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Fulham 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Hull City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Liverpool 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Manchester City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Manchester United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Middlesbrough 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Newcastle United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Portsmouth 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Stoke City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Sunderland 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 15 16 18 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Tottenham Hotspur 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
West Bromwich Albion 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
West Ham United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 18 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Wigan Athletic 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
2009/2010 Arsenal 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Aston Villa 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Birmingham City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Blackburn Rovers 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Bolton Wanderers 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Burnley 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Chelsea 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Everton 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Fulham 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Hull City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Liverpool 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Manchester City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Manchester United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Portsmouth 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Stoke City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Sunderland 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Tottenham Hotspur 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
West Ham United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Wigan Athletic 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Wolverhampton Wanderers 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
2010/2011 Arsenal 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Aston Villa 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Birmingham City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Blackburn Rovers 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Blackpool 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Bolton Wanderers 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Chelsea 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Everton 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Fulham 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Liverpool 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Manchester City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Manchester United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Newcastle United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Stoke City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Sunderland 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Tottenham Hotspur 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
West Bromwich Albion 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 16 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
West Ham United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Wigan Athletic 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Wolverhampton Wanderers 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
2011/2012 Arsenal 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Aston Villa 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Blackburn Rovers 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Bolton Wanderers 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Chelsea 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Everton 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Fulham 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Liverpool 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Manchester City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Manchester United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Newcastle United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Norwich City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Queens Park Rangers 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Stoke City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Sunderland 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Swansea City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 16 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Tottenham Hotspur 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
West Bromwich Albion 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Wigan Athletic 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Wolverhampton Wanderers 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
2012/2013 Arsenal 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Aston Villa 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Chelsea 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Everton 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Fulham 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Liverpool 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Manchester City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Manchester United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Newcastle United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Norwich City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Queens Park Rangers 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Reading 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Southampton 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Stoke City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Sunderland 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Swansea City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Tottenham Hotspur 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
West Bromwich Albion 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
West Ham United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Wigan Athletic 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
2013/2014 Arsenal 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Aston Villa 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Cardiff City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Chelsea 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Crystal Palace 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Everton 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Fulham 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Hull City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Liverpool 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Manchester City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Manchester United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Newcastle United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Norwich City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Southampton 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Stoke City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Sunderland 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Swansea City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Tottenham Hotspur 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
West Bromwich Albion 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
West Ham United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
2014/2015 Arsenal 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Aston Villa 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Burnley 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Chelsea 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Crystal Palace 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Everton 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Hull City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Leicester City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Liverpool 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Manchester City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Manchester United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Newcastle United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Queens Park Rangers 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Southampton 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Stoke City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Sunderland 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Swansea City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 16 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Tottenham Hotspur 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
West Bromwich Albion 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
West Ham United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
2015/2016 Arsenal 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Aston Villa 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Bournemouth 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Chelsea 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Crystal Palace 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Everton 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Leicester City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Liverpool 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Manchester City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Manchester United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Newcastle United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Norwich City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Southampton 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Stoke City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Sunderland 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Swansea City 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Tottenham Hotspur 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Watford 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
West Bromwich Albion 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
West Ham United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
France Ligue 1 2008/2009 AJ Auxerre 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 18 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
AS Monaco 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 18 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
AS Nancy-Lorraine 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 17 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
AS Saint-Étienne 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 19 18 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
FC Lorient 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 18 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
FC Nantes 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 18 19 19 18 19 18 19 19 18 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19
FC Sochaux-Montbéliard 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 17 19 19 19 19 18 19 19 18 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Girondins de Bordeaux 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Grenoble Foot 38 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
LOSC Lille 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 18 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Le Havre AC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 18 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Le Mans FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 15 19 14 18 19 13 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
OGC Nice 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 18 19 18 19 18 19 19 18 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Olympique Lyonnais 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 18 19 19 19 18 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Olympique de Marseille 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Paris Saint-Germain 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
SM Caen 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Stade Rennais FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 19 19 19 18 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Toulouse FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 16 18 19 19 19 18 19 19 19 19 18 19 19 18 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Valenciennes FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 17 18 18 18 19 19 18 19 19 19 19 19 18 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
2009/2010 AJ Auxerre 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
AS Monaco 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
AS Nancy-Lorraine 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
AS Saint-Étienne 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
FC Lorient 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
FC Sochaux-Montbéliard 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Girondins de Bordeaux 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Grenoble Foot 38 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
LOSC Lille 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Le Mans FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Montpellier Hérault SC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 18 19 19 19 19 19 19 18 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
OGC Nice 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Olympique Lyonnais 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 18 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19
Olympique de Marseille 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Paris Saint-Germain 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 18 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
RC Lens 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Stade Rennais FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Toulouse FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
US Boulogne Cote D'Opale 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 17 19 19 19 19 19 18 18 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Valenciennes FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
2010/2011 AC Arles-Avignon 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 19 19 19 18 18 16 19 19 19 19 19 19 19 19 19 19 19 19 19 19 12 12 12 12 12 12 12 12 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
AJ Auxerre 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 11 11 11 11 11 11 11 11 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
AS Monaco 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 16 19 19 19 19 19 19 18 19 19 19 19 11 11 11 11 11 11 11 11 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
AS Nancy-Lorraine 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 11 11 11 11 11 11 11 11 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
AS Saint-Étienne 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 12 12 12 12 12 12 12 12 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
FC Lorient 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 11 11 11 11 11 11 11 11 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
FC Sochaux-Montbéliard 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 11 11 11 11 11 11 11 11 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Girondins de Bordeaux 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 11 11 11 11 11 11 11 11 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
LOSC Lille 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 12 12 12 12 12 12 12 12 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19
Montpellier Hérault SC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 12 12 12 12 12 12 12 12 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
OGC Nice 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 12 12 12 12 12 12 12 12 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Olympique Lyonnais 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 11 11 11 11 11 11 11 11 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Olympique de Marseille 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 12 12 12 12 12 12 12 12 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Paris Saint-Germain 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 11 11 11 11 11 11 11 11 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
RC Lens 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 11 11 11 11 11 11 11 11 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
SM Caen 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 12 12 12 12 12 12 12 12 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Stade Brestois 29 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 18 13 13 13 13 13 13 13 13 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Stade Rennais FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 12 12 12 12 12 12 12 12 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Toulouse FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 19 19 19 19 19 19 12 12 12 12 12 12 12 12 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Valenciennes FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 13 13 13 13 13 13 13 13 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
2011/2012 AC Ajaccio 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 14 14 14 14 14 14 14 14 19 19 19 19 19 19 18 18 18 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
AJ Auxerre 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 13 13 13 13 13 13 13 13 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
AS Nancy-Lorraine 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 13 13 13 13 13 13 13 13 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
AS Saint-Étienne 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 14 14 14 14 14 14 14 14 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Dijon FCO 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 14 14 14 14 14 14 14 14 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
FC Lorient 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 13 13 13 13 13 13 13 13 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
FC Sochaux-Montbéliard 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 13 13 13 13 13 13 13 13 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Girondins de Bordeaux 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 13 13 13 13 13 13 13 13 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
LOSC Lille 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 13 13 13 13 13 13 13 13 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Montpellier Hérault SC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 14 14 14 14 14 14 14 14 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
OGC Nice 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 14 14 14 14 14 14 14 14 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Olympique Lyonnais 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 14 14 14 14 14 14 14 14 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Olympique de Marseille 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 13 13 13 13 13 13 13 13 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Paris Saint-Germain 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 13 13 13 13 13 13 13 13 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
SM Caen 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 13 13 13 13 13 13 13 13 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Stade Brestois 29 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 14 14 14 14 14 14 14 14 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Stade Rennais FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 15 15 15 15 15 15 15 15 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Toulouse FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 14 14 14 14 14 14 14 14 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Valenciennes FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 14 14 14 14 14 14 14 14 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Évian Thonon Gaillard FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 15 15 15 15 15 15 15 15 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
2012/2013 AC Ajaccio 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
AS Nancy-Lorraine 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 17 19 19 19 19 18 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
AS Saint-Étienne 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
ES Troyes AC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
FC Lorient 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
FC Sochaux-Montbéliard 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Girondins de Bordeaux 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
LOSC Lille 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Montpellier Hérault SC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
OGC Nice 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Olympique Lyonnais 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Olympique de Marseille 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Paris Saint-Germain 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
SC Bastia 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Stade Brestois 29 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Stade Rennais FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Stade de Reims 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Toulouse FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Valenciennes FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Évian Thonon Gaillard FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 16 14 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
2013/2014 AC Ajaccio 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
AS Monaco 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
AS Saint-Étienne 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
En Avant de Guingamp 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
FC Lorient 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
FC Nantes 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
FC Sochaux-Montbéliard 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Girondins de Bordeaux 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
LOSC Lille 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Montpellier Hérault SC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
OGC Nice 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Olympique Lyonnais 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Olympique de Marseille 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Paris Saint-Germain 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
SC Bastia 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Stade Rennais FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Stade de Reims 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Toulouse FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Valenciennes FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Évian Thonon Gaillard FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
2014/2015 AS Monaco 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
AS Saint-Étienne 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 3 3 3 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
En Avant de Guingamp 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 3 3 3 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
FC Lorient 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 17 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
FC Metz 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
FC Nantes 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 3 3 3 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Girondins de Bordeaux 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
LOSC Lille 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 3 3 3 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Montpellier Hérault SC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 3 3 3 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
OGC Nice 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Olympique Lyonnais 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 3 3 3 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Olympique de Marseille 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Paris Saint-Germain 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
RC Lens 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
SC Bastia 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 3 3 3 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
SM Caen 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Stade Rennais FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Stade de Reims 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 3 3 3 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Toulouse FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Évian Thonon Gaillard FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 3 3 3 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
2015/2016 AS Monaco 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
AS Saint-Étienne 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 13 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Angers SCO 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
ES Troyes AC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
En Avant de Guingamp 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
FC Lorient 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
FC Nantes 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 17 19 18 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
GFC Ajaccio 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Girondins de Bordeaux 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
LOSC Lille 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Montpellier Hérault SC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 17 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
OGC Nice 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Olympique Lyonnais 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Olympique de Marseille 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 18 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Paris Saint-Germain 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
SC Bastia 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
SM Caen 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Stade Rennais FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Stade de Reims 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Toulouse FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Germany 1. Bundesliga 2008/2009 1. FC Köln 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Bayer 04 Leverkusen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 16 17 17 17 16 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Borussia Dortmund 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 16 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Borussia Mönchengladbach 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 13 16 17 16 14 16 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
DSC Arminia Bielefeld 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 16 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Eintracht Frankfurt 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 9 17 17 17 17 17 16 16 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Bayern Munich 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Energie Cottbus 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 13 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Schalke 04 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Hamburger SV 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 16 17 17 17 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Hannover 96 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 14 15 17 17 17 17 17 17 17 16 17 17 17 17 17 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Hertha BSC Berlin 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17
Karlsruher SC 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 14 17 16 17 16 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
SV Werder Bremen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 15 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
TSG 1899 Hoffenheim 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 16 17 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
VfB Stuttgart 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
VfL Bochum 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 14 16 17 17 17 17 15 17 17 17 16 16 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
VfL Wolfsburg 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
2009/2010 1. FC Köln 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
1. FC Nürnberg 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
1. FSV Mainz 05 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Bayer 04 Leverkusen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Borussia Dortmund 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Borussia Mönchengladbach 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Eintracht Frankfurt 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Bayern Munich 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Schalke 04 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Hamburger SV 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Hannover 96 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Hertha BSC Berlin 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
SC Freiburg 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
SV Werder Bremen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
TSG 1899 Hoffenheim 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
VfB Stuttgart 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
VfL Bochum 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
VfL Wolfsburg 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 16 16 16 17 17 17 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
2010/2011 1. FC Kaiserslautern 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 15 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
1. FC Köln 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
1. FC Nürnberg 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
1. FSV Mainz 05 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Bayer 04 Leverkusen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Borussia Dortmund 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Borussia Mönchengladbach 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Eintracht Frankfurt 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Bayern Munich 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Schalke 04 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
FC St. Pauli 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Hamburger SV 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Hannover 96 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
SC Freiburg 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
SV Werder Bremen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
TSG 1899 Hoffenheim 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
VfB Stuttgart 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
VfL Wolfsburg 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
2011/2012 1. FC Kaiserslautern 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
1. FC Köln 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
1. FC Nürnberg 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
1. FSV Mainz 05 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Bayer 04 Leverkusen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Borussia Dortmund 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Borussia Mönchengladbach 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Augsburg 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Bayern Munich 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Schalke 04 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Hamburger SV 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Hannover 96 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Hertha BSC Berlin 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
SC Freiburg 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
SV Werder Bremen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
TSG 1899 Hoffenheim 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
VfB Stuttgart 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
VfL Wolfsburg 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
2012/2013 1. FC Nürnberg 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
1. FSV Mainz 05 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Bayer 04 Leverkusen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Borussia Dortmund 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Borussia Mönchengladbach 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Eintracht Frankfurt 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Augsburg 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Bayern Munich 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Schalke 04 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Fortuna Düsseldorf 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Hamburger SV 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Hannover 96 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
SC Freiburg 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
SV Werder Bremen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
SpVgg Greuther Fürth 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
TSG 1899 Hoffenheim 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
VfB Stuttgart 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17
VfL Wolfsburg 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
2013/2014 1. FC Nürnberg 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
1. FSV Mainz 05 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Bayer 04 Leverkusen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Borussia Dortmund 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Borussia Mönchengladbach 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Eintracht Braunschweig 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Eintracht Frankfurt 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Augsburg 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Bayern Munich 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Schalke 04 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Hamburger SV 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Hannover 96 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Hertha BSC Berlin 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
SC Freiburg 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
SV Werder Bremen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
TSG 1899 Hoffenheim 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
VfB Stuttgart 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
VfL Wolfsburg 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
2014/2015 1. FC Köln 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 1 1 1 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
1. FSV Mainz 05 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 1 1 1 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Bayer 04 Leverkusen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Borussia Dortmund 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 17 17 17 17 17 17 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Borussia Mönchengladbach 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Eintracht Frankfurt 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 1 1 1 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Augsburg 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 1 1 1 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Bayern Munich 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Schalke 04 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 1 1 1 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Hamburger SV 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 17 17 17 17 17 17 17 17 17 1 1 1 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Hannover 96 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 17 17 17 17 17 17 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Hertha BSC Berlin 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
SC Freiburg 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 1 1 1 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
SC Paderborn 07 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
SV Werder Bremen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 1 1 1 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
TSG 1899 Hoffenheim 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
VfB Stuttgart 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 1 1 1 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
VfL Wolfsburg 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 1 1 1 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
2015/2016 1. FC Köln 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
1. FSV Mainz 05 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Bayer 04 Leverkusen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Borussia Dortmund 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Borussia Mönchengladbach 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Eintracht Frankfurt 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Augsburg 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Bayern Munich 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Ingolstadt 04 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Schalke 04 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Hamburger SV 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Hannover 96 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Hertha BSC Berlin 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
SV Darmstadt 98 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
SV Werder Bremen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
TSG 1899 Hoffenheim 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
VfB Stuttgart 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
VfL Wolfsburg 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Italy Serie A 2008/2009 Atalanta 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 18 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Bologna 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 18 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Cagliari 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Catania 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Chievo Verona 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 16 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 19 19 19 19 19 19 19 19 19 19 19 18 18 18 18 18 18 18 18 18 0 0 0 18 18 18 19 19 19 18 18 18 18 18 18 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19
Fiorentina 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Genoa 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Inter 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 17 19 19 19 19 18 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Juventus 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Lazio 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 19 19 19 19 19 19 19 19 19 19 19 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Lecce 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Milan 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Napoli 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Palermo 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 18 18 18 15 19 19 19 18 19 18 18 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Reggio Calabria 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 17 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Roma 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 18 18 18 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Sampdoria 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Siena 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Torino 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 17 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Udinese 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
2009/2010 Atalanta 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 18 19 18 18 18 18 18 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Bari 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 18 18 18 19 19 19 0 0 0 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Bologna 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 16 16 16 18 18 18 17 17 17 0 0 0 18 18 18 16 16 16 18 18 18 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Cagliari 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 18 18 18 17 17 17 19 19 19 0 0 0 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Catania 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 18 18 18 19 19 19 0 0 0 19 19 19 17 17 17 18 18 18 18 18 18 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19
Chievo Verona 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 12 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 17 17 17 18 18 18 19 19 19 0 0 0 19 19 19 17 17 17 16 16 16 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Fiorentina 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Genoa 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Inter 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Juventus 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Lazio 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 19 19 19 16 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Livorno 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Milan 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Napoli 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 17 17 17 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Palermo 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Parma 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Roma 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Sampdoria 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Siena 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Udinese 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 0 0 0 19 19 19 18 18 18 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
2010/2011 Bari 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19
Bologna 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 18 18 18 19 19 19 0 0 0 19 19 19 19 19 19 18 18 18 18 18 18 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19
Brescia 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 8 16 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Cagliari 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 18 18 18 0 0 0 19 19 19 19 19 19 18 18 18 17 17 17 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19
Catania 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Cesena 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Chievo Verona 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 17 17 17 17 17 17 18 18 18 17 17 17 0 0 0 17 17 17 18 18 18 15 15 15 17 17 17 15 15 15 19 19 19 19 19 19 19 19 19 19 19 19 19
Fiorentina 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Genoa 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 18 18 18 18 18 18 17 17 17 19 19 19 19 19 19 19 19 19 19 19 19 19
Inter 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Juventus 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Lazio 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Lecce 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Milan 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Napoli 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Palermo 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 18 18 18 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19
Parma 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 18 18 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Roma 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Sampdoria 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 0 0 0 19 19 19 19 19 19 18 18 18 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19
Udinese 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
2011/2012 Atalanta 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 18 18 17 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18
Bologna 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Cagliari 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18
Catania 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18
Cesena 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 12 15 12 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17
Chievo Verona 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Fiorentina 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Genoa 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18
Inter 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18
Juventus 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18
Lazio 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18
Lecce 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Milan 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18
Napoli 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18
Novara 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 16 18 17 18 18 17 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 17 17 18 18 18 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18
Palermo 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Parma 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18
Roma 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 18 18 17 18 18 18 18 18 18 18 18 18 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 18 18 18 18 18 18 18 18 18 18 18 18 18
Siena 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18
Udinese 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 18 18 18 18 17 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18
2012/2013 Atalanta 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Bologna 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Cagliari 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 18 18 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Catania 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Chievo Verona 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Fiorentina 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Genoa 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Inter 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Juventus 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Lazio 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Milan 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19
Napoli 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Palermo 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 17 17 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 17 17 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Parma 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Pescara 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Roma 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Sampdoria 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Siena 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Torino 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Udinese 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
2013/2014 Atalanta 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Bologna 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Cagliari 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Catania 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Chievo Verona 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Fiorentina 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Genoa 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Hellas Verona 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Inter 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Juventus 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Lazio 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Livorno 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Milan 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Napoli 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Parma 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Roma 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Sampdoria 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 17 15 12 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Sassuolo 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Torino 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Udinese 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
2014/2015 Atalanta 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Cagliari 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Cesena 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 16 18 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Chievo Verona 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Empoli 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Fiorentina 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Genoa 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Hellas Verona 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Inter 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Juventus 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Lazio 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Milan 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Napoli 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 17 17 1 1 1 18 18 18 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
Palermo 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Parma 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 17 17 19 19 19 19 19 19 19 19 19 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Roma 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Sampdoria 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 15 11 19 19 19 19 19 19 19 19 19 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Sassuolo 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Torino 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Udinese 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
2015/2016 Atalanta 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Bologna 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Carpi 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 16 17 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Chievo Verona 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Empoli 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Fiorentina 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Frosinone 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Genoa 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Hellas Verona 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Inter 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Juventus 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Lazio 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Milan 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 18 17 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Napoli 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 18 18 18 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Palermo 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Roma 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Sampdoria 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 16 12 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Sassuolo 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Torino 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Udinese 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Netherlands Eredivisie 2008/2009 ADO Den Haag 17 17 17 17 17 17 17 17 17 17 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 4 5 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17
AZ 17 17 17 17 17 17 17 17 17 17 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 6 6 6 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17
Ajax 17 17 17 17 17 17 17 17 17 17 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 5 6 6 5 6 6 5 6 6 2 2 2 2 2 2 2 2 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17
De Graafschap 17 17 17 17 17 17 17 17 17 17 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 0 5 2 5 5 1 5 5 5 5 5 5 5 5 3 5 5 5 5 5 5 4 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17
FC Groningen 17 17 17 17 17 17 17 17 17 17 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 3 5 5 5 5 4 5 4 4 5 5 5 0 0 0 0 0 0 0 0 17 17 17 17 17 17 16 16 16 17 17 17 0 0 0 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17
FC Twente 17 17 17 17 17 17 17 17 17 17 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 0 0 0 0 0 0 0 0 16 16 16 16 16 16 16 16 16 16 16 16 0 0 0 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 17 17 17 17 17 17 17 17 17 17 16 17 17
FC Utrecht 17 17 17 17 17 17 17 17 17 17 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 5 6 5 6 6 6 5 6 6 6 6 6 6 6 6 6 6 6 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17
FC Volendam 17 17 17 17 17 17 17 17 17 17 7 7 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 7 7 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 7 7 1 6 7 4 6 5 7 3 7 7 7 7 7 7 7 7 7 7 7 6 0 0 0 0 0 0 0 0 17 17 17 17 17 17 16 16 16 17 17 17 0 0 0 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 17 17 17 17 17 17
Feyenoord 17 17 17 17 17 17 17 17 17 17 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 5 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17
Heracles Almelo 17 17 17 17 17 17 17 17 17 17 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 6 6 6 5 6 6 5 6 6 5 6 6 6 6 6 6 6 5 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17
N.E.C. 17 17 17 17 17 17 17 17 17 17 7 7 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 7 7 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 7 7 6 7 7 7 7 7 7 4 7 6 5 7 7 7 6 7 7 7 5 7 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17
NAC Breda 17 17 17 17 17 17 17 17 17 17 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 4 5 5 5 5 5 5 5 5 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17
PSV 17 17 17 17 17 17 17 17 17 17 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 5 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17
Roda JC Kerkrade 17 17 17 17 17 17 17 17 17 17 7 7 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 7 7 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 7 6 7 7 7 7 7 7 7 1 7 6 6 7 6 5 6 7 6 7 7 7 0 0 0 0 0 0 0 0 17 17 17 17 17 17 16 16 16 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17
SC Heerenveen 17 17 17 17 17 17 17 17 17 17 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 4 5 4 5 5 5 5 5 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17
Sparta Rotterdam 17 17 17 17 17 17 17 17 17 17 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 4 5 4 5 5 3 4 5 5 4 5 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17
Vitesse 17 17 17 17 17 17 17 17 17 17 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 0 5 4 4 5 4 4 5 5 4 5 5 5 5 5 5 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17
Willem II 17 17 17 17 17 17 17 17 17 17 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 6 6 6 6 3 6 6 3 6 6 6 6 6 6 6 6 6 6 6 6 6 6 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17
2009/2010 ADO Den Haag 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 14 16 17 17 17 17 16 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
AZ 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 16 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Ajax 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 2 2 2 2 2 2 2 2 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Groningen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 16 17 17 17 17 17 16 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Twente 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 16 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Utrecht 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 16 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Feyenoord 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 16 17 17 17 17 1 1 1 1 1 1 1 1 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Heracles Almelo 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
N.E.C. 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 16 17 16 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
NAC Breda 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 16 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
PSV 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 1 1 1 1 1 1 1 1 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
RKC Waalwijk 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 16 17 16 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Roda JC Kerkrade 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 13 17 17 17 17 17 17 17 17 17 16 16 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
SC Heerenveen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Sparta Rotterdam 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 16 16 16 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17
VVV-Venlo 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 15 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 16 16 16 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Vitesse 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 0 0 0 0 0 0 0 0 16 16 16 16 16 16 16 16 16 16 16 16 0 0 0 15 15 15 16 16 16 16 16 16 16 16 16 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17
Willem II 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 12 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
2010/2011 ADO Den Haag 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
AZ 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Ajax 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 2 2 2 2 2 2 2 2 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
De Graafschap 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 16 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Excelsior 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Groningen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 16 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Twente 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Utrecht 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Feyenoord 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 16 17 17 17 17 17 17 17 17 17 2 2 2 2 2 2 2 2 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Heracles Almelo 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
N.E.C. 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 14 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
NAC Breda 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
PSV 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 16 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Roda JC Kerkrade 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 16 17 17 17 17 17 17 15 17 17 17 17 16 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
SC Heerenveen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
VVV-Venlo 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 12 17 16 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Vitesse 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 16 17 17 17 16 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Willem II 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
2011/2012 ADO Den Haag 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 16 16 16 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
AZ 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Ajax 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 2 2 2 2 2 2 2 2 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
De Graafschap 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Excelsior 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Groningen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 16 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Twente 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Utrecht 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 1 1 1 1 1 1 1 1 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Feyenoord 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 2 2 2 2 2 2 2 2 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Heracles Almelo 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
N.E.C. 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
NAC Breda 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 16 16 16 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
PSV 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 2 2 2 2 2 2 2 2 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
RKC Waalwijk 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Roda JC Kerkrade 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
SC Heerenveen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 16 16 16 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
VVV-Venlo 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 14 15 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Vitesse 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
2012/2013 ADO Den Haag 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
AZ 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Ajax 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 12 12 12 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Groningen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Twente 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Utrecht 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 16 16 16 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Feyenoord 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 15 15 15 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Heracles Almelo 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 0 0 0 0 0 0 0 0 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17
N.E.C. 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
NAC Breda 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
PEC Zwolle 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
PSV 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 10 10 10 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
RKC Waalwijk 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Roda JC Kerkrade 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 15 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
SC Heerenveen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
VVV-Venlo 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Vitesse 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
Willem II 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17
2013/2014 ADO Den Haag 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
AZ 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Ajax 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Groningen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Twente 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Utrecht 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Feyenoord 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Go Ahead Eagles 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Heracles Almelo 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
N.E.C. 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
NAC Breda 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
PEC Zwolle 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 16 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
PSV 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 14 14 14 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
RKC Waalwijk 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Roda JC Kerkrade 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
SC Cambuur 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
SC Heerenveen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Vitesse 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
2014/2015 ADO Den Haag 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 15 17 12 12 12 12 12 12 12 12 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
AZ 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 11 11 11 11 11 11 11 11 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Ajax 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 11 11 11 11 11 11 11 11 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 3 3 3 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Excelsior 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 12 12 12 12 12 12 12 12 17 17 17 17 17 17 17 17 17 16 16 16 17 17 17 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Dordrecht 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 12 12 12 12 12 12 12 12 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 3 3 3 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Groningen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 12 12 12 12 12 12 12 12 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Twente 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 11 11 11 11 11 11 11 11 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 3 3 3 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Utrecht 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 11 11 11 11 11 11 11 11 17 17 17 17 17 17 17 17 17 16 16 16 17 17 17 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Feyenoord 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 10 10 10 10 10 10 10 10 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 3 3 3 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Go Ahead Eagles 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 11 11 11 11 11 11 11 11 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 3 3 3 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Heracles Almelo 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 12 12 12 12 12 12 12 12 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
NAC Breda 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 12 12 12 12 12 12 12 12 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 3 3 3 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
PEC Zwolle 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 12 12 12 12 12 12 12 12 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 3 3 3 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
PSV 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 11 11 11 11 11 11 11 11 17 17 17 17 17 17 17 17 17 17 17 17 15 15 15 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
SC Cambuur 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 12 12 12 12 12 12 12 12 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 3 3 3 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
SC Heerenveen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 12 12 12 12 12 12 12 12 17 17 17 17 17 17 17 17 17 15 15 15 17 17 17 17 17 17 3 3 3 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Vitesse 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 12 12 12 12 12 12 12 12 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Willem II 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 11 11 11 11 11 11 11 11 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
2015/2016 ADO Den Haag 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
AZ 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Ajax 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
De Graafschap 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 15 16 10 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Excelsior 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Groningen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Twente 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Utrecht 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Feyenoord 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Heracles Almelo 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 15 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
N.E.C. 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
PEC Zwolle 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
PSV 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Roda JC Kerkrade 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
SC Cambuur 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
SC Heerenveen 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 11 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Vitesse 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Willem II 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 17 17 17 17 17 17 17 17 17 0 0 0 16 16 16 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Poland Ekstraklasa 2008/2009 Arka Gdynia 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 0 0 4 3 1 4 2 1 0 4 2 4 3 2 3 2 4 4 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Cracovia 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3 1 5 0 1 1 4 1 6 5 3 3 4 3 4 4 4 5 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
GKS Bełchatów 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 1 0 0 3 2 3 4 1 4 0 3 4 4 1 4 4 3 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Jagiellonia Białystok 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 6 4 2 6 2 4 3 2 4 2 3 1 3 1 1 4 4 1 2 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Lech Poznań 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 7 3 4 3 7 7 7 3 5 5 4 3 2 3 4 3 4 3 2 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Lechia Gdańsk 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 7 7 0 2 0 0 4 1 4 4 3 4 5 4 3 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Legia Warszawa 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 7 1 5 0 3 5 2 2 0 3 4 2 3 3 3 3 3 3 3 5 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Odra Wodzisław 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 3 5 2 2 1 2 1 2 1 3 1 2 2 3 3 1 1 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
P. Warszawa 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 0 3 0 0 0 3 4 0 1 0 1 1 2 0 1 3 1 2 4 2 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Piast Gliwice 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 0 3 5 0 2 3 4 2 1 7 6 3 5 6 4 3 5 6 4 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Polonia Bytom 30 30 30 30 30 30 30 30 30 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 11 6 9 9 7 2 7 9 7 5 3 7 3 5 2 6 4 7 3 7 6 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 30 30 30 30 30 30 30 30 30 30 30 30
Ruch Chorzów 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 1 6 2 5 0 3 3 3 1 2 3 1 1 2 2 3 3 1 2 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Widzew Łódź 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 1 0 3 2 2 5 1 5 4 3 2 6 2 3 2 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Wisła Kraków 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 0 5 6 6 5 6 6 6 5 4 3 3 5 3 4 2 3 2 2 4 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Śląsk Wrocław 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 3 6 6 5 0 5 2 3 0 0 3 4 4 2 4 2 5 3 4 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
2009/2010 Arka Gdynia 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 5 2 10 4 0 6 15 13 8 5 7 8 8 8 7 8 5 9 6 10 5 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Cracovia 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 13 7 3 2 7 8 5 4 4 8 5 9 7 6 9 11 10 2 8 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
GKS Bełchatów 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 8 6 5 4 10 8 14 10 7 9 7 7 7 7 6 11 8 5 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Jagiellonia Białystok 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 7 8 11 8 11 8 3 10 0 8 6 9 7 3 9 12 4 9 4 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Korona Kielce 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 7 8 15 2 13 8 6 8 1 1 7 10 9 5 3 6 9 7 5 7 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Lech Poznań 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 6 5 13 13 13 15 11 12 11 8 8 11 7 4 4 10 8 6 8 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Lechia Gdańsk 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 4 11 3 4 11 13 2 8 1 0 8 8 8 6 5 8 7 8 9 6 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Legia Warszawa 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 14 6 9 2 8 7 9 5 3 8 7 7 7 7 6 5 11 10 7 5 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Odra Wodzisław 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 3 5 3 10 4 3 6 1 10 4 7 11 9 8 9 7 10 6 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
P. Warszawa 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 2 6 5 9 3 12 6 6 5 1 8 9 10 6 1 7 10 7 6 7 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Piast Gliwice 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 0 7 7 0 8 6 5 7 12 13 8 7 10 8 6 5 13 9 4 5 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Polonia Bytom 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 2 10 4 5 2 11 14 2 1 0 10 8 8 9 5 9 8 8 10 6 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Ruch Chorzów 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 13 15 15 12 0 11 3 7 11 8 9 6 8 7 5 6 10 7 10 7 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Wisła Kraków 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 2 11 14 14 4 11 9 15 15 15 8 9 9 7 5 6 8 10 5 7 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Zagłębie Lubin 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 6 2 6 7 11 0 9 7 10 8 10 7 10 9 7 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Śląsk Wrocław 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 7 13 15 13 7 9 8 14 4 1 10 4 9 6 6 3 11 7 8 8 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
2010/2011 Arka Gdynia 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 10 7 5 2 4 9 6 7 1 0 10 7 7 9 11 10 10 6 9 11 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Cracovia 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 11 10 9 2 14 12 10 10 5 7 10 11 8 10 8 10 13 10 7 8 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
GKS Bełchatów 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 2 6 12 8 12 11 6 11 13 10 12 7 10 8 10 8 7 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Jagiellonia Białystok 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 9 3 5 5 13 14 12 6 5 1 9 10 12 7 8 5 11 10 12 8 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Korona Kielce 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 12 15 15 8 11 4 9 10 4 2 6 10 11 10 8 9 8 8 5 11 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Lech Poznań 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 7 9 15 13 13 13 13 10 14 10 11 8 10 11 12 8 9 10 7 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Lechia Gdańsk 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 5 4 13 9 6 5 3 5 3 9 9 9 10 11 9 11 7 10 7 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Legia Warszawa 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 8 14 12 3 7 13 13 11 11 7 6 8 9 8 11 10 9 9 4 11 8 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
P. Warszawa 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 9 15 9 15 5 14 9 9 8 12 8 9 9 8 8 8 10 8 10 5 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Polonia Bytom 30 30 30 30 30 30 30 30 30 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 8 19 15 25 20 24 14 18 13 6 21 20 17 19 16 17 20 14 20 18 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 30 30 30 30 30 30 30 30 30 30 30 30
Ruch Chorzów 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 7 15 13 12 2 7 5 8 11 15 9 8 8 8 10 7 9 9 9 8 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Widzew Łódź 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 8 14 14 12 7 2 6 9 7 8 7 11 8 8 8 11 10 9 7 8 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Wisła Kraków 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 6 12 13 15 15 14 12 9 13 14 7 9 10 8 9 7 8 11 7 9 7 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Zagłębie Lubin 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 10 5 0 9 10 11 13 13 4 10 10 9 10 11 13 9 9 10 6 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Śląsk Wrocław 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 12 15 15 11 7 11 10 14 2 1 9 10 7 8 7 10 10 7 10 8 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
2011/2012 Cracovia 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 7 9 9 5 12 13 6 8 6 1 11 13 10 9 10 9 8 11 12 12 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
GKS Bełchatów 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 10 11 6 4 7 10 4 9 6 2 10 9 10 9 11 10 9 11 10 7 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Jagiellonia Białystok 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 7 10 11 10 15 14 12 7 9 1 10 13 7 11 12 12 10 11 8 9 9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Korona Kielce 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 11 13 11 14 10 6 13 12 11 11 10 13 10 8 11 10 12 8 10 10 9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Lech Poznań 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 13 13 13 15 14 14 15 15 11 11 10 10 10 9 12 8 8 10 8 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Lechia Gdańsk 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 13 2 7 7 10 10 7 1 11 11 11 12 9 12 13 11 9 8 12 7 6 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Legia Warszawa 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 2 7 12 9 11 12 15 11 14 10 14 10 10 12 9 8 10 9 9 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
P. Warszawa 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 7 10 15 15 13 15 14 12 11 9 10 11 11 11 9 7 12 10 12 8 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Podbeskidzie Bielsko-Biała 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 13 1 12 14 5 6 10 4 14 12 10 9 12 10 9 11 11 11 11 9 8 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Polonia Bytom 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 4 14 15 15 14 15 12 14 10 7 10 12 12 9 8 7 9 9 12 8 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Ruch Chorzów 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 10 15 14 15 9 8 5 12 15 15 10 10 9 9 12 11 9 13 9 12 9 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Widzew Łódź 30 30 30 30 30 30 30 30 30 30 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 23 15 15 21 12 10 15 21 19 18 22 21 21 22 23 20 21 17 24 15 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 30 30 30 30 30 30 30 30 30 30 30 30
Wisła Kraków 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 14 11 13 8 8 14 15 14 10 11 12 8 11 11 8 12 8 11 10 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Zagłębie Lubin 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 7 9 4 15 14 13 9 11 4 12 13 9 12 12 11 10 7 10 11 8 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Śląsk Wrocław 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 13 15 15 15 8 8 11 14 12 1 11 12 11 10 11 10 12 10 7 12 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
2012/2013 GKS Bełchatów 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 7 5 13 13 13 11 9 6 10 10 2 13 14 10 12 13 10 12 12 13 12 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Jagiellonia Białystok 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 10 15 13 14 10 15 15 15 15 13 4 13 11 12 13 13 13 12 12 12 13 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Korona Kielce 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 13 12 14 14 11 13 15 14 12 11 14 13 10 9 10 13 14 12 11 12 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Lech Poznań 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 14 15 15 14 15 14 15 15 15 12 14 12 13 14 12 13 13 10 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Lechia Gdańsk 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 15 12 11 15 12 15 6 11 5 4 13 12 12 14 13 14 14 13 14 11 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Legia Warszawa 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 10 13 15 12 12 15 14 15 15 13 13 10 12 10 14 12 12 13 11 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
P. Warszawa 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 7 10 14 12 13 15 14 13 10 13 12 13 14 13 14 11 14 12 12 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Piast Gliwice 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 12 10 14 14 14 15 14 14 15 14 12 14 13 10 12 13 12 13 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Podbeskidzie Bielsko-Biała 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 13 8 9 14 8 11 13 12 14 14 13 13 13 11 11 14 13 12 13 12 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Pogoń Szczecin 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 6 14 9 4 12 13 9 5 6 9 13 10 14 11 8 13 10 14 13 12 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Polonia Bytom 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 6 15 15 15 15 15 15 14 10 12 14 13 11 10 11 12 13 10 11 14 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Ruch Chorzów 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 11 8 13 12 11 8 12 14 15 14 12 13 12 11 13 14 11 12 13 13 11 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Widzew Łódź 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 13 14 13 11 10 9 13 13 14 15 6 12 11 12 13 11 15 14 13 12 12 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Wisła Kraków 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 15 14 11 13 13 15 15 15 10 10 13 11 14 13 10 13 14 11 11 14 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Zagłębie Lubin 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14 15 12 6 4 15 14 15 15 14 14 14 12 8 13 12 14 12 14 13 12 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Śląsk Wrocław 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 12 13 11 15 9 11 13 15 10 2 13 14 12 12 12 14 11 13 14 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
2013/2014 Cracovia 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 13 14 15 14 15 15 13 15 15 13 15 15 14 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Jagiellonia Białystok 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 14 15 15 14 15 15 14 14 14 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Korona Kielce 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 12 15 15 14 14 15 14 14 13 15 15 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Lech Poznań 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 14 15 14 15 13 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Lechia Gdańsk 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 11 15 15 15 15 15 15 15 15 15 10 14 15 14 14 15 14 15 14 15 15 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Legia Warszawa 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 15 14 14 15 14 13 15 15 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Piast Gliwice 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 14 15 15 14 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Podbeskidzie Bielsko-Biała 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 9 15 15 15 14 15 15 15 15 15 13 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Pogoń Szczecin 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 14 15 14 14 13 13 13 15 13 15 15 15 15 14 14 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Polonia Bytom 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 15 14 14 15 15 15 15 15 14 15 14 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Ruch Chorzów 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 13 15 15 15 15 15 15 15 14 15 14 15 15 15 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Widzew Łódź 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 10 13 13 8 12 11 13 13 14 15 13 15 15 14 14 15 15 15 15 14 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Wisła Kraków 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 14 15 14 14 15 15 15 15 15 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Zagłębie Lubin 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 15 15 14 14 15 14 14 15 14 14 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Zawisza Bydgoszcz 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 10 13 14 15 15 15 15 15 15 14 15 15 15 15 15 15 14 15 14 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Śląsk Wrocław 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 14 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
2014/2015 Cracovia 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 15 15 15 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
GKS Bełchatów 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 11 14 14 14 15 15 15 15 15 14 14 14 14 14 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Górnik Łęczna 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 15 14 15 14 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Jagiellonia Białystok 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 12 15 15 14 15 14 14 15 15 15 15 15 14 14 15 15 15 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Korona Kielce 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 15 15 12 15 15 14 15 15 15 15 15 14 15 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Lech Poznań 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 14 15 15 15 14 15 14 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Lechia Gdańsk 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 12 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Legia Warszawa 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 14 15 15 15 15 15 15 15 15 14 15 15 15 13 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Piast Gliwice 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 15 15 15 15 15 14 14 13 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Podbeskidzie Bielsko-Biała 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 13 15 15 12 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Pogoń Szczecin 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 6 15 15 15 14 15 15 13 15 14 14 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Polonia Bytom 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 14 10 11 15 15 15 14 14 14 14 15 15 15 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Ruch Chorzów 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 14 14 15 14 15 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Wisła Kraków 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 14 14 15 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Zawisza Bydgoszcz 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 11 14 11 14 14 15 14 12 15 15 14 15 14 15 15 14 15 14 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Śląsk Wrocław 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
2015/2016 Cracovia 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 14 15 15
Górnik Łęczna 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 14 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 14 15 15
Jagiellonia Białystok 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 13 15 15 15 15 15 15 15 14 15 14 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 14 15 15
Korona Kielce 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 11 15 15 15 15 15 15 15 15 15 14 14 15 15 14 15 15 13 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 14 15 15
Lech Poznań 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 14 15 15
Lechia Gdańsk 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 14 15 15
Legia Warszawa 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 14 15 15
Piast Gliwice 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 14 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 14 15 15
Podbeskidzie Bielsko-Biała 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 14 15 15 15 15 14 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 14 15 15
Pogoń Szczecin 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 6 15 15 15 15 15 14 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 14 15 15
Polonia Bytom 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 14 12 15 15 15 15 15 15 15 15 15 15 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 14 15 15
Ruch Chorzów 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 14 15 15
Termalica Bruk-Bet Nieciecza 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 14 15 14 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 0 15 15 15 15 15 15
Wisła Kraków 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 14 15 15
Zagłębie Lubin 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 15 15 14 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 14 15 15
Śląsk Wrocław 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 14 15 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 14 15 15
Portugal Liga ZON Sagres 2008/2009 Académica de Coimbra 15 15 15 15 15 15 15 15 15 15 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 5 6 5 6 6 5 6 6 6 5 5 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 15
Amadora 15 15 15 15 15 15 15 15 15 15 7 7 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 7 7 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 7 7 7 4 7 5 3 2 5 7 7 6 7 6 5 7 7 6 7 7 5 7 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 15 15 15 14 15 15
CD Nacional 15 15 15 15 15 15 15 15 15 15 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 7 8 8 8 8 8 6 7 8 8 8 5 6 8 6 7 6 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 15
CF Os Belenenses 15 15 15 15 15 15 15 15 15 15 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 6 8 6 9 8 9 8 4 5 9 9 8 8 9 9 9 8 9 9 9 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 15
CS Marítimo 15 15 15 15 15 15 15 15 15 15 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 6 1 6 6 6 6 5 6 6 6 6 5 4 6 5 4 5 5 5 6 5 5 5 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 15
FC Paços de Ferreira 15 15 15 15 15 15 15 15 15 15 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 9 10 10 10 10 8 8 6 7 5 7 9 10 9 10 9 8 8 8 9 8 10 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 15
FC Porto 15 15 15 15 15 15 15 15 15 15 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 9 10 10 10 10 10 10 10 10 10 10 9 10 8 8 10 7 7 10 8 9 8 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 15
Leixões SC 15 15 15 15 15 15 15 15 15 15 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 10 5 5 10 10 9 10 10 10 9 9 10 9 10 10 8 9 9 10 10 10 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 15
Naval 1° de Maio 15 15 15 15 15 15 15 15 15 15 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 8 9 9 9 9 8 9 9 9 9 9 8 7 9 9 8 8 8 8 8 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 15
Rio Ave FC 15 15 15 15 15 15 15 15 15 15 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 10 9 4 5 11 11 9 10 11 10 11 8 10 11 9 9 11 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 15
SC Braga 15 15 15 15 15 15 15 15 15 15 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 8 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 8 9 8 3 9 9 8 9 9 8 9 9 7 8 8 9 8 9 8 8 9 7 9 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 15
SL Benfica 15 15 15 15 15 15 15 15 15 15 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 6 8 8 6 6 8 6 7 7 7 7 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 15
Sporting CP 15 15 15 15 15 15 15 15 15 15 10 10 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 10 10 10 10 10 10 10 10 10 10 10 9 9 9 8 10 9 8 6 10 7 10 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 15
Trofense 15 15 15 15 15 15 15 15 15 15 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 2 7 7 7 2 0 5 6 4 4 5 6 7 5 6 7 7 6 7 6 5 7 0 0 0 0 0 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 0 0 0 13 13 13 14 14 14 14 14 14 14 14 14 14 14 14 15 15 15 15 15 15 0 15 15 15 14 15 15
Vitória Guimarães 15 15 15 15 15 15 15 15 15 15 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 11 10 11 11 10 9 11 7 3 10 11 10 10 11 10 9 10 10 11 11 8 11 10 0 0 0 0 0 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 15 15 15 15 15 15 15 15 15 15 13 15 15
Vitória Setúbal 15 15 15 15 15 15 15 15 15 15 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 3 2 4 5 5 3 3 3 3 5 5 5 4 5 5 5 5 5 5 5 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 15
2009/2010 Académica de Coimbra 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 12 15 14 15 14 14 15 14 15 15 14 14 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
CD Nacional 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 14 15 12 12 14 15 15 15 15 15 13 15 12 14 0 0 0 0 0 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15
CF Os Belenenses 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 12 11 15 14 12 12 15 15 15 14 14 14 15 15 14 14 15 14 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
CS Marítimo 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 13 13 15 15 15 15 14 15 14 15 15 15 15 15 14 14 13 14 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
FC Paços de Ferreira 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 11 15 15 15 15 14 15 14 13 13 12 15 14 15 15 15 13 14 14 15 14 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
FC Porto 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 14 15 14 15 14 14 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
Leixões SC 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 12 13 15 12 13 14 15 12 14 13 15 15 14 15 14 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
Naval 1° de Maio 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 14 15 15 15 14 14 15 12 13 14 14 14 15 15 15 14 13 15 14 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
Rio Ave FC 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 15 15 15 15 15 15 15 14 14 15 15 14 15 14 14 14 15 15 15 13 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
S.C. Olhanense 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 14 14 15 15 15 15 15 15 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
SC Braga 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 15 15 14 15 15 15 15 12 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
SL Benfica 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 13 14 15 12 14 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
Sporting CP 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 14 15 15 15 14 15 14 15 14 15 14 14 15 14 13 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
União de Leiria, SAD 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 15 15 15 15 14 13 15 14 15 14 14 13 15 15 15 15 13 14 13 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
Vitória Guimarães 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 14 15 15 15 14 15 12 15 15 14 14 15 14 15 15 15 15 15 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
Vitória Setúbal 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 7 12 15 15 13 14 13 14 15 15 14 15 15 15 14 14 15 13 14 15 14 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 14 14 14 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
2010/2011 Académica de Coimbra 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 15 14 15 15 14 15 13 0 0 0 0 0 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 15 15 15 15 15 15 15 15 15 15 14 15 15
CD Nacional 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 14 13 15 14 15 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 15 14 15 15
CS Marítimo 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 10 12 13 14 14 15 15 15 14 15 14 13 15 15 15 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15
FC Paços de Ferreira 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 12 15 15 15 15 15 15 15 15 15 15 15 14 14 15 14 15 13 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15
FC Porto 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 14 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15
Naval 1° de Maio 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 12 14 15 12 11 15 12 15 15 15 15 14 15 14 15 14 15 15 15 13 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15
Portimonense 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 14 15 15 15 14 14 15 15 15 14 15 15 15 15 15 14 14 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 15 15 15 15 15 15
Rio Ave FC 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 13 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15
S.C. Olhanense 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 14 14 14 15 15 15 15 15 15 14 15 15 14 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15
SC Beira Mar 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 15 15 15 15 15 14 14 15 14 14 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 14 14 14 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15
SC Braga 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 14 14 14 15 15 14 12 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15
SL Benfica 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 14 15 13 13 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15
Sporting CP 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 14 15 15 15 15 15 15 15 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15
União de Leiria, SAD 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 7 11 15 15 14 15 15 15 14 15 15 14 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 14 14 14 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15
Vitória Guimarães 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 13 15 15 15 14 15 14 14 15 15 15 15 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15
Vitória Setúbal 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 15 15 15 15 15 15 14 14 14 15 13 15 15 14 15 15 14 14 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15
2011/2012 Académica de Coimbra 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 15 15 15 15 14 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 14 14 14 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15
CD Nacional 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 14 14 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15
CS Marítimo 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 14 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15
FC Paços de Ferreira 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 13 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 14 14 14 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15
FC Porto 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 14 14 15 15 15 15 14 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15
Feirense 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 14 14 14 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 15 15 15 15 15 15
Gil Vicente FC 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 14 15 14 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 14 14 14 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15
Rio Ave FC 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 14 15 14 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15
S.C. Olhanense 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 11 14 15 15 15 15 15 15 15 15 15 14 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15
SC Beira Mar 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 15 15 13 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15
SC Braga 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 14 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15
SL Benfica 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 14 15 15 15 15 14 14 14 15 0 0 0 0 0 0 0 0 14 14 14 14 14 14 15 15 15 14 14 14 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 15 15 15 15 15 15 15 15 15 15 14 15 15
Sporting CP 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 14 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15
União de Leiria, SAD 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 15 14 15 15 14 15 14 14 15 14 13 15 15 15 15 15 15 15 15 15 14 15 0 0 0 0 0 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 0 0 0 14 14 14 14 14 14 14 14 14 14 14 14 14 14 14 15 15 15 15 15 15 15 15 15 15 14 15 15
Vitória Guimarães 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 14 13 15 15 12 15 14 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15
Vitória Setúbal 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 9 15 15 14 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 14 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15
2012/2013 Académica de Coimbra 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 14 15 15 15 15 15 14 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
CD Nacional 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 11 15 15 15 15 15 15 15 15 14 14 15 15 15 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
CS Marítimo 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 15 15 14 15 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
Estoril Praia 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
FC Paços de Ferreira 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
FC Porto 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 10 10 10 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
Gil Vicente FC 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 12 15 15 15 15 12 15 15 13 11 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
Moreirense FC 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 11 14 13 14 13 15 15 15 15 15 15 15 15 15 15 15 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
Rio Ave FC 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
S.C. Olhanense 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 13 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
SC Beira Mar 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 15 15 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
SC Braga 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 12 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
SL Benfica 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 12 12 12 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
Sporting CP 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 14 15 14 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
Vitória Guimarães 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 14 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15
Vitória Setúbal 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 14 14 14 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15
2013/2014 Académica de Coimbra 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
CD Nacional 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 15 14 14 15 13 15 15 15 15 15 15 15 15 15 14 15 15 15 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
CF Os Belenenses 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 14 12 15 14 14 15 15 15 15 15 14 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
CS Marítimo 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 13 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Estoril Praia 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 14 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 14 14 14 14 14 14 15 15 15 15 15 15 14 14 14 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
FC Arouca 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 15 15 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
FC Paços de Ferreira 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 10 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
FC Porto 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Gil Vicente FC 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Rio Ave FC 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 13 14 15 15 15 15 15 15 14 14 15 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
S.C. Olhanense 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 13 15 15 15 15 15 15 15 15 14 15 15 15 15 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
SC Braga 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
SL Benfica 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 14 15 15 15 0 0 0 0 0 0 0 0 14 14 14 14 14 14 14 14 14 13 13 13 14 14 14 14 14 14 14 14 14 14 14 14 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Sporting CP 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 14 14 14 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Vitória Guimarães 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 15 15 15 15 14 14 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
Vitória Setúbal 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 14 14 15 15 15 15 14 15 14 15 15 14 15 15 15 15 15 15 15 14 0 0 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 15 0 0 0 0 0 0 15 15 15 15 15 15 15 15 15 15 15 15 15
2014/2015 Académica de Coimbra 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 16 17 17 17 17 17 17 17 17 16 17 16 15 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Boavista FC 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 16 17 17 17 17 16 17 17 17 17 17 17 17 17 17 15 15 0 0 0 0 0 0 0 0 17 17 17 17 17 17 16 16 16 17 17 17 16 16 16 16 16 16 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
CD Nacional 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 0 0 0 0 0 0 0 0 16 16 16 16 16 16 15 15 15 16 16 16 16 16 16 16 16 16 2 2 2 16 16 16 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
CF Os Belenenses 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
CS Marítimo 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 15 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 16 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Estoril Praia 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 16 16 17 17 16 17 17 15 17 17 17 16 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Arouca 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 16 16 17 16 0 0 0 0 0 0 0 0 17 17 17 16 16 16 17 17 17 17 17 17 17 17 17 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Paços de Ferreira 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 15 16 17 17 17 17 17 17 17 17 17 16 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Penafiel 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 14 12 17 16 15 15 17 17 17 17 17 17 17 17 17 17 16 0 0 0 0 0 0 0 0 17 17 17 17 17 17 15 15 15 17 17 17 17 17 17 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Porto 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 16 17 15 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 15 15 15 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Gil Vicente FC 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 16 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Moreirense FC 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 13 17 17 17 17 17 17 17 17 17 16 16 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Rio Ave FC 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 15 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 1 1 1 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
SC Braga 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 15 17 17 17 17 17 16 17 17 17 16 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
SL Benfica 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 16 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Sporting CP 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 16 16 16 17 17 17 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Vitória Guimarães 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 15 17 17 17 17 17 17 17 16 17 16 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Vitória Setúbal 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 15 17 16 14 13 17 17 17 16 17 17 14 17 17 17 16 0 0 0 0 0 0 0 0 17 17 17 17 17 17 16 16 16 16 16 16 17 17 17 17 17 17 2 2 2 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
2015/2016 Académica de Coimbra 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 15 17 17
Boavista FC 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 15 17 17 17 16 17 17 16 17 16 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 15 17 17
CD Nacional 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 15 17 17
CF Os Belenenses 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 16 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 15 17 17
CS Marítimo 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 15 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 15 17 17
Estoril Praia 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 16 16 16 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 15 17 17
FC Arouca 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 15 14 17 17 17 16 17 15 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 15 17 17
FC Paços de Ferreira 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 14 16 17 16 17 17 16 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 15 17 17
FC Porto 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 16 17 16 17 17 17 16 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 16 16 16 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 15 17 17
Moreirense FC 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 16 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 15 17 17
Rio Ave FC 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 15 17 17
SC Braga 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 15 17 17
SL Benfica 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 11 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 16 16 16 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 15 17 17
Sporting CP 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 15 17 17
Tondela 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 11 16 15 16 17 17 16 15 17 16 17 17 17 17 17 17 16 17 17 17 16 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 0 17 17 17 16 17 17
Uniao da Madeira 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 15 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 0 17 17 17 16 17 17
Vitória Guimarães 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 16 17 17 17 17 16 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 15 17 17
Vitória Setúbal 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 17 17 17 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 15 17 17
Scotland Premier League 2008/2009 Aberdeen 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 17 19 18 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Celtic 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 18 19 19 19 18 18 19 1 1 1 1 1 1 1 1 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Dundee United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 17 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Falkirk 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 16 17 15 18 19 19 19 18 19 18 18 19 18 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Hamilton Academical FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 18 18 19 19 19 19 19 19 18 19 18 18 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Heart of Midlothian 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 18 18 19 19 18 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Hibernian 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 16 19 19 19 16 19 18 19 19 19 19 19 19 19 19 19 18 18 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Inverness Caledonian Thistle 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 13 15 19 19 19 19 19 19 19 19 17 19 19 18 18 19 18 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Kilmarnock 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 19 19 19 18 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Motherwell 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 18 18 19 19 18 18 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Rangers 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 2 2 2 2 2 2 2 2 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
St. Mirren 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 15 18 19 19 19 19 19 19 19 18 19 19 19 19 18 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 18 18 18 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
2009/2010 Aberdeen 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 19 20 20 20 20 20 20 20 18 20 20 20 20 20 20 20 19 20 0 0 0 0 0 0 0 0 20 20 20 20 20 20 20 20 20 20 20 20 0 0 0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
Celtic 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 19 18 19 17 19 19 18 19 18 2 2 2 2 2 2 2 2 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Dundee United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 18 13 18 19 19 19 19 19 19 19 19 18 19 18 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Falkirk 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 19 19 19 19 18 19 19 17 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Hamilton Academical FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 17 19 18 17 19 19 19 17 18 18 18 19 19 19 19 18 19 19 18 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Heart of Midlothian 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 18 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Hibernian 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 16 19 19 18 18 19 19 19 19 19 18 18 18 19 19 19 19 18 19 18 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Kilmarnock 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 18 19 18 19 18 18 19 19 17 18 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Motherwell 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 18 17 17 16 18 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18
Rangers 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 18 19 19 19 19 19 18 2 2 2 2 2 2 2 2 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
St. Johnstone FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 15 19 16 17 19 19 19 19 18 19 19 19 19 19 19 19 18 19 19 19 19 18 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
St. Mirren 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 18 19 18 18 19 19 19 18 18 17 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
2010/2011 Aberdeen 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 18 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 18 18 18 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Celtic 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 2 2 2 2 2 2 2 2 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Dundee United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Hamilton Academical FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 17 18 18 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 18 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Heart of Midlothian 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Hibernian 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Inverness Caledonian Thistle 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 19 19 19 18 19 18 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Kilmarnock 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Motherwell 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Rangers 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 18 19 19 19 19 19 2 2 2 2 2 2 2 2 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
St. Johnstone FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 18 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 18 18 18 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
St. Mirren 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
2011/2012 Aberdeen 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Celtic 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Dundee United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Dunfermline Athletic 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Heart of Midlothian 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Hibernian 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Inverness Caledonian Thistle 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Kilmarnock 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 15 20 20 19 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0 0 0 0 0 0 0 0 20 20 20 20 20 20 20 20 20 20 20 20 0 0 0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20
Motherwell 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Rangers 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 2 2 2 2 2 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
St. Johnstone FC 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 18 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18
St. Mirren 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
2012/2013 Aberdeen 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 15 18 18 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Celtic 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 14 14 14 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Dundee FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Dundee United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Heart of Midlothian 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Hibernian 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Inverness Caledonian Thistle 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 18 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Kilmarnock 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 18 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Motherwell 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Ross County FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 19 19 17 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
St. Johnstone FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 19 19 19 19 18 19 19 18 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
St. Mirren 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
2013/2014 Aberdeen 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
Celtic 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 18 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Dundee United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Heart of Midlothian 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Hibernian 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 18 19 20 20 18 18 18 20 20 20 20 20 20 20 20 20 20 0 0 0 0 0 0 0 0 20 20 20 20 20 20 19 19 19 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0 0 0 0 0 0 20 20 20 20 20 20 20 20 20 20 20 20 20
Inverness Caledonian Thistle 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 18 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Kilmarnock 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 18 18 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Motherwell 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 12 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Partick Thistle F.C. 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Ross County FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
St. Johnstone FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
St. Mirren 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 18 18 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
2014/2015 Aberdeen 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Celtic 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Dundee FC 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 19 18 19 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0 0 0 0 0 0 0 0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 3 3 3 20 20 20 0 0 0 0 0 0 20 20 20 20 20 20 20 20 20 20 20 20 20
Dundee United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 18 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 3 3 3 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Hamilton Academical FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 17 18 18 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 3 3 3 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Inverness Caledonian Thistle 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 18 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 3 3 3 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Kilmarnock 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 3 3 3 18 18 18 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
Motherwell 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 3 3 3 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Partick Thistle F.C. 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 19 19 19 19 19 19 19 18 19 18 19 18 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 3 3 3 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Ross County FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 18 18 17 19 19 19 19 19 19 19 19 18 19 18 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 3 3 3 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
St. Johnstone FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 3 3 3 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
St. Mirren 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 18 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 3 3 3 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
2015/2016 Aberdeen 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Celtic 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 18 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Dundee FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 17 18 19 19 19 19 18 19 18 19 19 19 19 19 19 19 18 18 19 18 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Dundee United 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 18 18 19 19 19 19 19 18 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Hamilton Academical FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 18 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Heart of Midlothian 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Inverness Caledonian Thistle 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 18 17 18 18 19 19 18 19 19 19 19 19 19 18 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Kilmarnock 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 17 19 19 19 19 19 19 19 19 19 19 18 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Motherwell 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Partick Thistle F.C. 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 18 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Ross County FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 19 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
St. Johnstone FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 0 0 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Spain LIGA BBVA 2008/2009 Athletic Club de Bilbao 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 19 19 18 19 19 18 18 18 18 19 18 18 19 19 19 19 18 19 17 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Atlético Madrid 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 19 18 18 19 17 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
CA Osasuna 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 16 19 19 19 19 19 19 19 18 19 19 19 19 18 19 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
CD Numancia 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 15 16 19 19 18 13 15 18 18 19 18 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
FC Barcelona 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 14 19 19 19 19 19 19 18 19 19 17 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Getafe CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 16 19 19 19 19 19 19 19 18 19 19 18 19 19 18 17 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Málaga CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 18 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
RC Deportivo de La Coruña 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 15 19 18 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
RC Recreativo 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 18 19 19 19 18 18 16 16 19 19 18 18 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
RCD Espanyol 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 19 19 19 19 19 19 19 19 18 19 19 19 19 18 16 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
RCD Mallorca 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 18 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Racing Santander 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 17 17 19 19 19 18 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Betis Balompié 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 16 19 19 19 19 19 18 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Madrid CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 19 19 19 19 19 19 17 19 19 19 19 18 17 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Sporting de Gijón 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 12 19 19 19 19 19 19 15 19 19 19 19 19 18 19 18 19 17 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Valladolid 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 18 18 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Sevilla FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19
UD Almería 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 19 19 18 18 19 18 19 18 19 18 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Valencia CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 17 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Villarreal CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 15 17 19 19 19 19 19 19 19 18 18 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
2009/2010 Athletic Club de Bilbao 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 18 19 19 18 17 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Atlético Madrid 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 19 19 19 19 19 19 19 19 17 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
CA Osasuna 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 15 19 19 19 19 19 18 19 17 19 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
CD Tenerife 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 16 16 18 19 19 19 19 19 19 19 19 19 18 19 19 19 19 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
FC Barcelona 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 17 19 18 19 19 19 19 19 19 18 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Getafe CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 19 19 19 19 19 19 19 19 19 17 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Málaga CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 18 12 19 19 18 19 18 19 16 19 19 19 18 19 19 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
RC Deportivo de La Coruña 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 16 19 19 19 19 19 19 19 19 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
RCD Espanyol 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 19 19 19 19 17 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
RCD Mallorca 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 18 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Racing Santander 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Madrid CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 16 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Sporting de Gijón 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 18 19 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Valladolid 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Zaragoza 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 16 19 17 18 19 19 19 19 19 19 19 19 18 19 19 19 19 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Sevilla FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
UD Almería 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 19 19 19 19 19 19 19 19 19 19 18 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Valencia CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 17 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Villarreal CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Xerez Club Deportivo 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 12 19 19 19 19 19 19 17 15 18 19 19 19 17 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
2010/2011 Athletic Club de Bilbao 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Atlético Madrid 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
CA Osasuna 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
FC Barcelona 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Getafe CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Hércules Club de Fútbol 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 15 18 18 16 16 18 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Levante UD 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 16 19 19 18 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Málaga CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
RC Deportivo de La Coruña 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
RCD Espanyol 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
RCD Mallorca 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 15 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Racing Santander 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Madrid CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Sociedad 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Sporting de Gijón 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 19 19 19 18 18 18 18 18 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Zaragoza 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Sevilla FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
UD Almería 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Valencia CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Villarreal CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
2011/2012 Athletic Club de Bilbao 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Atlético Madrid 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
CA Osasuna 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
FC Barcelona 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Getafe CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Granada CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Levante UD 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Málaga CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
RCD Espanyol 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
RCD Mallorca 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Racing Santander 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Rayo Vallecano 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Betis Balompié 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Madrid CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Sociedad 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Sporting de Gijón 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Zaragoza 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Sevilla FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Valencia CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Villarreal CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
2012/2013 Athletic Club de Bilbao 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Atlético Madrid 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
CA Osasuna 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
FC Barcelona 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Getafe CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Granada CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Levante UD 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Málaga CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
RC Celta de Vigo 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
RC Deportivo de La Coruña 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
RCD Espanyol 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
RCD Mallorca 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Rayo Vallecano 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Betis Balompié 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Madrid CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Sociedad 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Valladolid 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Zaragoza 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 13 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Sevilla FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
Valencia CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19
2013/2014 Athletic Club de Bilbao 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Atlético Madrid 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
CA Osasuna 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Elche CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
FC Barcelona 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Getafe CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Granada CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Levante UD 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Málaga CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
RC Celta de Vigo 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
RCD Espanyol 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Rayo Vallecano 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Betis Balompié 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Madrid CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Sociedad 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Valladolid 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Sevilla FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
UD Almería 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Valencia CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Villarreal CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
2014/2015 Athletic Club de Bilbao 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Atlético Madrid 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Córdoba CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Elche CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
FC Barcelona 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Getafe CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Granada CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Levante UD 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Málaga CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
RC Celta de Vigo 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
RC Deportivo de La Coruña 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 19 19 19 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
RCD Espanyol 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Rayo Vallecano 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 16 19 17 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Madrid CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Sociedad 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
SD Eibar 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Sevilla FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
UD Almería 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Valencia CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 2 2 2 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Villarreal CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 1 1 1 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
2015/2016 Athletic Club de Bilbao 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Atlético Madrid 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
FC Barcelona 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 18 18 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Getafe CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 18 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Granada CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Levante UD 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Málaga CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
RC Celta de Vigo 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
RC Deportivo de La Coruña 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
RCD Espanyol 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Rayo Vallecano 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 17 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Betis Balompié 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Madrid CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Sociedad 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Real Sporting de Gijón 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 15 18 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
SD Eibar 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Sevilla FC 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
UD Las Palmas 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 18 18 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Valencia CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Villarreal CF 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 18 19 19 19 19 18 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 19 0 0 0 19 19 19 0 0 0 0 0 0 19 19 19 19 19 19 19 19 19 19 19 19 19
Switzerland Super League 2008/2009 AC Bellinzona 18 18 18 18 18 18 18 18 18 18 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 7 8 8 7 8 8 8 7 8 8 7 7 8 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
BSC Young Boys 18 18 18 18 18 18 18 18 18 18 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 6 7 3 7 5 7 7 7 7 6 7 7 7 5 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Aarau 18 18 18 18 18 18 18 18 18 18 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 8 9 9 9 8 9 8 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Basel 18 18 18 18 18 18 18 18 18 18 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 6 7 7 7 7 7 7 6 6 7 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Luzern 18 18 18 18 18 18 18 18 18 18 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 7 8 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Sion 18 18 18 18 18 18 18 18 18 18 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 4 8 8 5 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 6 8 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Vaduz 18 18 18 18 18 18 18 18 18 18 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 6 7 7 7 6 5 6 5 6 5 4 6 7 7 7 7 6 6 7 6 7 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Zürich 18 18 18 18 18 18 18 18 18 18 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 7 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 8 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
Grasshopper Club Zürich 18 18 18 18 18 18 18 18 18 18 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 5 7 7 6 7 7 6 7 6 7 6 7 6 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
Neuchâtel Xamax 18 18 18 18 18 18 18 18 18 18 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 6 5 4 5 7 7 7 7 7 7 6 7 7 7 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
2009/2010 AC Bellinzona 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 17 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
BSC Young Boys 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Aarau 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 16 18 18 18 18 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Basel 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Luzern 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 17 18 18 18 18 18 18 18 17 18 18 18 18 18 18 18 18 18 17 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Sion 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 17 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC St. Gallen 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Zürich 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
Grasshopper Club Zürich 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
Neuchâtel Xamax 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 18 18 17 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
2010/2011 AC Bellinzona 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
BSC Young Boys 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Basel 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Luzern 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 17 17 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Sion 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 17 18 18 18 18 17 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC St. Gallen 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Thun 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 18 17 18 18 17 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Zürich 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 17 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
Grasshopper Club Zürich 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
Neuchâtel Xamax 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
2011/2012 BSC Young Boys 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Basel 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Lausanne-Sports 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Luzern 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 16 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Sion 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 16 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Thun 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 16 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
FC Zürich 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Grasshopper Club Zürich 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
Neuchâtel Xamax 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 9 9 9 9 9 9 9 9 9 9 9 9 9
Servette FC 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 17 17 17 17 17 17 17 17 17 17 17 17 17
2012/2013 BSC Young Boys 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Basel 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Lausanne-Sports 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Luzern 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 18 18 18 18 18 18 17 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Sion 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC St. Gallen 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 18 18 18 18 18 18 18 18 18 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Thun 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Zürich 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
Grasshopper Club Zürich 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
Servette FC 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
2013/2014 BSC Young Boys 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Aarau 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 17 18 18 18 18 17 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Basel 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Lausanne-Sports 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 16 18 18 18 18 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Luzern 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Sion 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 13 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC St. Gallen 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Thun 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Zürich 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
Grasshopper Club Zürich 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 17 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
2014/2015 BSC Young Boys 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 17 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Aarau 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Basel 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 16 18 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Luzern 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 17 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Sion 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 16 17 18 18 18 18 18 18 18 18 18 18 16 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC St. Gallen 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 13 18 18 18 18 18 18 18 18 18 17 18 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Thun 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 17 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Vaduz 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 16 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
FC Zürich 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
Grasshopper Club Zürich 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 18 18 18 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 18 18 18
2015/2016 BSC Young Boys 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 18 18 18 18 18 18 10 10 10 10 10 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 16 18 18
FC Basel 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 17 18 18 18 18 18 18 10 10 10 10 10 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 16 18 18
FC Luzern 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 18 18 18 18 18 18 10 10 10 10 10 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 16 18 18
FC Sion 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 18 18 18 17 18 18 18 18 18 18 18 18 18 18 10 10 10 10 10 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 16 18 18
FC St. Gallen 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 17 18 18 18 18 18 18 10 10 10 10 10 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 16 18 18
FC Thun 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 17 18 18 18 18 18 18 18 18 18 10 10 10 10 10 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 16 18 18
FC Vaduz 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 16 18 18 18 18 18 10 10 10 10 10 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 16 18 18
FC Zürich 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 18 18 18 18 18 18 10 10 10 10 10 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 16 18 18
Grasshopper Club Zürich 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 17 18 18 18 17 18 18 18 18 18 18 10 10 10 10 10 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 18 18 18 18 16 18 18
Lugano 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 11 17 18 18 15 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 18 10 10 10 10 10 10 10 10 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 18 18 18 18 18 18 0 18 18 18 18 18 18

There seems to be a few odd seasons in the data-set, where some football teams do not play the same number of matches as the others. We will have to investigate this further.

Assessing Player Ratings

Visual Assessment: Acquainting Myself
In [11]:
#Visualize the first rows of the dataset players ratings
players_ratings.head()
Out[11]:
id player_fifa_api_id player_api_id date overall_rating potential preferred_foot attacking_work_rate defensive_work_rate crossing finishing heading_accuracy short_passing volleys dribbling curve free_kick_accuracy long_passing ball_control acceleration sprint_speed agility reactions balance shot_power jumping stamina strength long_shots aggression interceptions positioning vision penalties marking standing_tackle sliding_tackle gk_diving gk_handling gk_kicking gk_positioning gk_reflexes id.1 player_api_id.1 player_name player_fifa_api_id.1 birthday height weight
0 1 218353 505942 2016-02-18 00:00:00 67.0 71.0 right medium medium 49.0 44.0 71.0 61.0 44.0 51.0 45.0 39.0 64.0 49.0 60.0 64.0 59.0 47.0 65.0 55.0 58.0 54.0 76.0 35.0 71.0 70.0 45.0 54.0 48.0 65.0 69.0 69.0 6.0 11.0 10.0 8.0 8.0 1 505942 Aaron Appindangoye 218353 1992-02-29 00:00:00 182.88 187
1 2 218353 505942 2015-11-19 00:00:00 67.0 71.0 right medium medium 49.0 44.0 71.0 61.0 44.0 51.0 45.0 39.0 64.0 49.0 60.0 64.0 59.0 47.0 65.0 55.0 58.0 54.0 76.0 35.0 71.0 70.0 45.0 54.0 48.0 65.0 69.0 69.0 6.0 11.0 10.0 8.0 8.0 1 505942 Aaron Appindangoye 218353 1992-02-29 00:00:00 182.88 187
2 3 218353 505942 2015-09-21 00:00:00 62.0 66.0 right medium medium 49.0 44.0 71.0 61.0 44.0 51.0 45.0 39.0 64.0 49.0 60.0 64.0 59.0 47.0 65.0 55.0 58.0 54.0 76.0 35.0 63.0 41.0 45.0 54.0 48.0 65.0 66.0 69.0 6.0 11.0 10.0 8.0 8.0 1 505942 Aaron Appindangoye 218353 1992-02-29 00:00:00 182.88 187
3 4 218353 505942 2015-03-20 00:00:00 61.0 65.0 right medium medium 48.0 43.0 70.0 60.0 43.0 50.0 44.0 38.0 63.0 48.0 60.0 64.0 59.0 46.0 65.0 54.0 58.0 54.0 76.0 34.0 62.0 40.0 44.0 53.0 47.0 62.0 63.0 66.0 5.0 10.0 9.0 7.0 7.0 1 505942 Aaron Appindangoye 218353 1992-02-29 00:00:00 182.88 187
4 5 218353 505942 2007-02-22 00:00:00 61.0 65.0 right medium medium 48.0 43.0 70.0 60.0 43.0 50.0 44.0 38.0 63.0 48.0 60.0 64.0 59.0 46.0 65.0 54.0 58.0 54.0 76.0 34.0 62.0 40.0 44.0 53.0 47.0 62.0 63.0 66.0 5.0 10.0 9.0 7.0 7.0 1 505942 Aaron Appindangoye 218353 1992-02-29 00:00:00 182.88 187

Duplicate rows in the players ratings dataset

In [12]:
#Count number of duplicate rows
sum(players_ratings.duplicated())
Out[12]:
0

Number of samples & columns in the players ratings dataset

In [13]:
#Check if there are any null values in the dataframe
players_ratings.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 183978 entries, 0 to 183977
Data columns (total 49 columns):
id                      183978 non-null int64
player_fifa_api_id      183978 non-null int64
player_api_id           183978 non-null int64
date                    183978 non-null object
overall_rating          183142 non-null float64
potential               183142 non-null float64
preferred_foot          183142 non-null object
attacking_work_rate     180748 non-null object
defensive_work_rate     183142 non-null object
crossing                183142 non-null float64
finishing               183142 non-null float64
heading_accuracy        183142 non-null float64
short_passing           183142 non-null float64
volleys                 181265 non-null float64
dribbling               183142 non-null float64
curve                   181265 non-null float64
free_kick_accuracy      183142 non-null float64
long_passing            183142 non-null float64
ball_control            183142 non-null float64
acceleration            183142 non-null float64
sprint_speed            183142 non-null float64
agility                 181265 non-null float64
reactions               183142 non-null float64
balance                 181265 non-null float64
shot_power              183142 non-null float64
jumping                 181265 non-null float64
stamina                 183142 non-null float64
strength                183142 non-null float64
long_shots              183142 non-null float64
aggression              183142 non-null float64
interceptions           183142 non-null float64
positioning             183142 non-null float64
vision                  181265 non-null float64
penalties               183142 non-null float64
marking                 183142 non-null float64
standing_tackle         183142 non-null float64
sliding_tackle          181265 non-null float64
gk_diving               183142 non-null float64
gk_handling             183142 non-null float64
gk_kicking              183142 non-null float64
gk_positioning          183142 non-null float64
gk_reflexes             183142 non-null float64
id.1                    183978 non-null int64
player_api_id.1         183978 non-null int64
player_name             183978 non-null object
player_fifa_api_id.1    183978 non-null int64
birthday                183978 non-null object
height                  183978 non-null float64
weight                  183978 non-null int64
dtypes: float64(36), int64(7), object(6)
memory usage: 68.8+ MB
In [14]:
#Find number of rows with missing values per column
players_ratings.isnull().sum()
Out[14]:
id                         0
player_fifa_api_id         0
player_api_id              0
date                       0
overall_rating           836
potential                836
preferred_foot           836
attacking_work_rate     3230
defensive_work_rate      836
crossing                 836
finishing                836
heading_accuracy         836
short_passing            836
volleys                 2713
dribbling                836
curve                   2713
free_kick_accuracy       836
long_passing             836
ball_control             836
acceleration             836
sprint_speed             836
agility                 2713
reactions                836
balance                 2713
shot_power               836
jumping                 2713
stamina                  836
strength                 836
long_shots               836
aggression               836
interceptions            836
positioning              836
vision                  2713
penalties                836
marking                  836
standing_tackle          836
sliding_tackle          2713
gk_diving                836
gk_handling              836
gk_kicking               836
gk_positioning           836
gk_reflexes              836
id.1                       0
player_api_id.1            0
player_name                0
player_fifa_api_id.1       0
birthday                   0
height                     0
weight                     0
dtype: int64
In [15]:
players_ratings.describe()
Out[15]:
id player_fifa_api_id player_api_id overall_rating potential crossing finishing heading_accuracy short_passing volleys dribbling curve free_kick_accuracy long_passing ball_control acceleration sprint_speed agility reactions balance shot_power jumping stamina strength long_shots aggression interceptions positioning vision penalties marking standing_tackle sliding_tackle gk_diving gk_handling gk_kicking gk_positioning gk_reflexes id.1 player_api_id.1 player_fifa_api_id.1 height weight
count 183978.00000 183978.000000 183978.000000 183142.000000 183142.000000 183142.000000 183142.000000 183142.000000 183142.000000 181265.000000 183142.000000 181265.000000 183142.000000 183142.000000 183142.000000 183142.000000 183142.000000 181265.000000 183142.000000 181265.000000 183142.000000 181265.000000 183142.000000 183142.000000 183142.000000 183142.000000 183142.000000 183142.000000 181265.000000 183142.000000 183142.000000 183142.000000 181265.000000 183142.000000 183142.000000 183142.000000 183142.000000 183142.000000 183978.000000 183978.000000 183978.000000 183978.000000 183978.000000
mean 91989.50000 165671.524291 135900.617324 68.600015 73.460353 55.086883 49.921078 57.266023 62.429672 49.468436 59.175154 52.965675 49.380950 57.069880 63.388879 67.659357 68.051244 65.970910 66.103706 65.189496 61.808427 66.969045 67.038544 67.424529 53.339431 60.948046 52.009271 55.786504 57.873550 55.003986 46.772242 50.351257 48.001462 14.704393 16.063612 20.998362 16.132154 16.441439 5520.197785 135900.617324 165636.285936 181.878872 168.776245
std 53110.01825 53851.094769 136927.840510 7.041139 6.592271 17.242135 19.038705 16.488905 14.194068 18.256618 17.744688 18.255788 17.831746 14.394464 15.196671 12.983326 12.569721 12.954585 9.155408 13.063188 16.135143 11.006734 13.165262 12.072280 18.367025 16.089521 19.450133 18.448292 15.144086 15.546519 21.227667 21.483706 21.598778 16.865467 15.867382 21.452980 16.099175 17.198155 3191.425870 136927.840510 53856.899802 6.394818 15.088920
min 1.00000 2.000000 2625.000000 33.000000 39.000000 1.000000 1.000000 1.000000 3.000000 1.000000 1.000000 2.000000 1.000000 3.000000 5.000000 10.000000 12.000000 11.000000 17.000000 12.000000 2.000000 14.000000 10.000000 10.000000 1.000000 6.000000 1.000000 2.000000 1.000000 2.000000 1.000000 1.000000 2.000000 1.000000 1.000000 1.000000 1.000000 1.000000 1.000000 2625.000000 2.000000 157.480000 117.000000
25% 45995.25000 155798.000000 34763.000000 64.000000 69.000000 45.000000 34.000000 49.000000 57.000000 35.000000 52.000000 41.000000 36.000000 49.000000 58.000000 61.000000 62.000000 58.000000 61.000000 58.000000 54.000000 60.000000 61.000000 60.000000 41.000000 51.000000 34.000000 45.000000 49.000000 45.000000 25.000000 29.000000 25.000000 7.000000 8.000000 8.000000 8.000000 8.000000 2754.000000 34763.000000 155681.000000 177.800000 159.000000
50% 91989.50000 183488.000000 77741.000000 69.000000 74.000000 59.000000 53.000000 60.000000 65.000000 52.000000 64.000000 56.000000 50.000000 59.000000 67.000000 69.000000 69.000000 68.000000 67.000000 67.000000 65.000000 68.000000 69.000000 69.000000 58.000000 64.000000 57.000000 60.000000 60.000000 57.000000 50.000000 56.000000 53.000000 10.000000 11.000000 12.000000 11.000000 11.000000 5532.000000 77741.000000 183471.000000 182.880000 168.000000
75% 137983.75000 199848.000000 191080.000000 73.000000 78.000000 68.000000 65.000000 68.000000 72.000000 64.000000 72.000000 67.000000 63.000000 67.000000 73.000000 77.000000 77.000000 75.000000 72.000000 74.000000 73.000000 74.000000 76.000000 76.000000 67.000000 73.000000 68.000000 69.000000 69.000000 67.000000 66.000000 69.000000 67.000000 13.000000 15.000000 15.000000 15.000000 15.000000 8256.000000 191080.000000 199843.750000 185.420000 179.000000
max 183978.00000 234141.000000 750584.000000 94.000000 97.000000 95.000000 97.000000 98.000000 97.000000 93.000000 97.000000 94.000000 97.000000 97.000000 97.000000 97.000000 97.000000 96.000000 96.000000 96.000000 97.000000 96.000000 96.000000 96.000000 96.000000 97.000000 96.000000 96.000000 97.000000 96.000000 96.000000 95.000000 95.000000 94.000000 93.000000 97.000000 96.000000 96.000000 11075.000000 750584.000000 234141.000000 208.280000 243.000000

Quality

matches table
  • Some Column names not descriptive
  • Missing values (for certain columns) (can't clean)
  • In-game events are in xml format (goal, shoton, shotoff, foulcommit, card, cross, corner, possession)
  • The dates in column 'date' are strings rather than datetime format
  • Missing games for the Belgium Match Season 2013/2014
  • Inconsistent data for the following Poland seasons, teams:
    • Match season 2008/2009, team Polonia Bytom 30
    • Match season 2010/2011, team Polonia Bytom 30
    • Match season 2011/2012, team Widzew Łódź 30
    • More to inspect
  • Erroneous datatypes
players_ratings table
  • Missing values (for certain columns)
  • The dates in column 'date' and 'birthday' are strings rather than datetime format
  • Weight is given in lbs rather than kilograms

  • Erroneous datatypes

Tidiness

main_matches table
  • In-game events are not atomic, they should be split into respective team's events
  • Several columns are duplicated or unnecessary.

Clean

Make a copy of the original dataframes, where we will do the cleaning on.

In [16]:
matches_clean = matches.copy()
players_ratings_clean = players_ratings.copy()

matches: Erroneous datatypes

Define

Convert the 'date' column from string to datetime format.

Code
In [17]:
#Column 'date' is currently a string, convert to datetime format
matches_clean['date'] = pd.to_datetime(matches_clean['date'])
Test
In [18]:
#Check results.
matches_clean.info(verbose=True)
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 25979 entries, 0 to 25978
Data columns (total 130 columns):
id                    int64
country_id            int64
league_id             int64
season                object
stage                 int64
date                  datetime64[ns]
match_api_id          int64
home_team_api_id      int64
away_team_api_id      int64
home_team_goal        int64
away_team_goal        int64
home_player_X1        float64
home_player_X2        float64
home_player_X3        float64
home_player_X4        float64
home_player_X5        float64
home_player_X6        float64
home_player_X7        float64
home_player_X8        float64
home_player_X9        float64
home_player_X10       float64
home_player_X11       float64
away_player_X1        float64
away_player_X2        float64
away_player_X3        float64
away_player_X4        float64
away_player_X5        float64
away_player_X6        float64
away_player_X7        float64
away_player_X8        float64
away_player_X9        float64
away_player_X10       float64
away_player_X11       float64
home_player_Y1        float64
home_player_Y2        float64
home_player_Y3        float64
home_player_Y4        float64
home_player_Y5        float64
home_player_Y6        float64
home_player_Y7        float64
home_player_Y8        float64
home_player_Y9        float64
home_player_Y10       float64
home_player_Y11       float64
away_player_Y1        float64
away_player_Y2        float64
away_player_Y3        float64
away_player_Y4        float64
away_player_Y5        float64
away_player_Y6        float64
away_player_Y7        float64
away_player_Y8        float64
away_player_Y9        float64
away_player_Y10       float64
away_player_Y11       float64
home_player_1         float64
home_player_2         float64
home_player_3         float64
home_player_4         float64
home_player_5         float64
home_player_6         float64
home_player_7         float64
home_player_8         float64
home_player_9         float64
home_player_10        float64
home_player_11        float64
away_player_1         float64
away_player_2         float64
away_player_3         float64
away_player_4         float64
away_player_5         float64
away_player_6         float64
away_player_7         float64
away_player_8         float64
away_player_9         float64
away_player_10        float64
away_player_11        float64
goal                  object
shoton                object
shotoff               object
foulcommit            object
card                  object
cross                 object
corner                object
possession            object
B365H                 float64
B365D                 float64
B365A                 float64
BWH                   float64
BWD                   float64
BWA                   float64
IWH                   float64
IWD                   float64
IWA                   float64
LBH                   float64
LBD                   float64
LBA                   float64
PSH                   float64
PSD                   float64
PSA                   float64
WHH                   float64
WHD                   float64
WHA                   float64
SJH                   float64
SJD                   float64
SJA                   float64
VCH                   float64
VCD                   float64
VCA                   float64
GBH                   float64
GBD                   float64
GBA                   float64
BSH                   float64
BSD                   float64
BSA                   float64
id.1                  int64
country_id.1          int64
name                  object
id.2                  int64
name.1                object
id.3                  int64
team_api_id           int64
team_fifa_api_id      float64
team_long_name        object
team_short_name       object
id.4                  int64
team_api_id.1         int64
team_fifa_api_id.1    float64
team_long_name.1      object
team_short_name.1     object
dtypes: datetime64[ns](1), float64(98), int64(16), object(15)
memory usage: 25.8+ MB

matches: In-game events are in xml format (goal, shoton, shotoff, foulcommit, card, cross, corner, possession)

Note: the 'In-game events are not atomic, they should be split into respective team's events', which is a tidiness issue and not a completeness issue, is included in this header because it is also fixed by the cleaning operation that fixes the above observation. Multiple observations in one Define, Code, and Test header occurs multiple times in this notebook.

Define

Extract the relevant information from the above mentioned columns by using an XML parser.

Code
In [19]:
plt.figure(figsize=(15,10))
sns.heatmap(matches_clean.isnull(),yticklabels=False,cbar=False,cmap='viridis');
In [20]:
matches_clean.sample(5)
Out[20]:
id country_id league_id season stage date match_api_id home_team_api_id away_team_api_id home_team_goal away_team_goal home_player_X1 home_player_X2 home_player_X3 home_player_X4 home_player_X5 home_player_X6 home_player_X7 home_player_X8 home_player_X9 home_player_X10 home_player_X11 away_player_X1 away_player_X2 away_player_X3 away_player_X4 away_player_X5 away_player_X6 away_player_X7 away_player_X8 away_player_X9 away_player_X10 away_player_X11 home_player_Y1 home_player_Y2 home_player_Y3 home_player_Y4 home_player_Y5 home_player_Y6 home_player_Y7 home_player_Y8 home_player_Y9 home_player_Y10 home_player_Y11 away_player_Y1 away_player_Y2 away_player_Y3 away_player_Y4 away_player_Y5 away_player_Y6 away_player_Y7 away_player_Y8 away_player_Y9 away_player_Y10 away_player_Y11 home_player_1 home_player_2 home_player_3 home_player_4 home_player_5 home_player_6 home_player_7 home_player_8 home_player_9 home_player_10 home_player_11 away_player_1 away_player_2 away_player_3 away_player_4 away_player_5 away_player_6 away_player_7 away_player_8 away_player_9 away_player_10 away_player_11 goal shoton shotoff foulcommit card cross corner possession B365H B365D B365A BWH BWD BWA IWH IWD IWA LBH LBD LBA PSH PSD PSA WHH WHD WHA SJH SJD SJA VCH VCD VCA GBH GBD GBA BSH BSD BSA id.1 country_id.1 name id.2 name.1 id.3 team_api_id team_fifa_api_id team_long_name team_short_name id.4 team_api_id.1 team_fifa_api_id.1 team_long_name.1 team_short_name.1
830 831 1 1 2011/2012 18 2011-12-17 1032830 9997 8203 0 0 1.0 2.0 4.0 6.0 8.0 1.0 3.0 5.0 7.0 9.0 5.0 1.0 2.0 4.0 6.0 8.0 1.0 3.0 5.0 7.0 9.0 5.0 1.0 3.0 3.0 3.0 3.0 7.0 7.0 7.0 7.0 7.0 11.0 1.0 3.0 3.0 3.0 3.0 7.0 7.0 7.0 7.0 7.0 11.0 37937.0 3329.0 178486.0 7683.0 36522.0 38354.0 37972.0 37866.0 104415.0 37983.0 68226.0 39573.0 80184.0 67941.0 39389.0 178291.0 38956.0 154433.0 277813.0 37112.0 67959.0 39145.0 NaN NaN NaN NaN NaN NaN NaN NaN 2.40 3.40 2.8 2.35 3.20 2.95 2.20 3.2 2.9 2.20 3.25 2.75 NaN NaN NaN 2.35 3.1 2.9 2.38 3.3 2.8 2.38 3.30 3.00 2.35 3.2 2.85 2.3 3.3 2.8 1 1 Belgium Jupiler League 1 Belgium 614 9997 680.0 Sint-Truidense VV STT 11 8203 110724.0 KV Mechelen MEC
7615 7616 4769 4769 2015/2016 26 2016-02-13 1990137 9847 8639 0 0 1.0 2.0 4.0 6.0 8.0 3.0 5.0 7.0 3.0 5.0 7.0 1.0 2.0 4.0 6.0 8.0 3.0 5.0 7.0 3.0 5.0 7.0 1.0 3.0 3.0 3.0 3.0 7.0 7.0 7.0 10.0 10.0 10.0 1.0 3.0 3.0 3.0 3.0 7.0 7.0 7.0 10.0 10.0 10.0 145550.0 109651.0 267365.0 52133.0 215798.0 129391.0 192920.0 26419.0 589349.0 49677.0 46509.0 25540.0 165583.0 40020.0 357881.0 242156.0 32575.0 369788.0 26291.0 213319.0 319822.0 210406.0 <goal /> <shoton><value><stats><shoton>1</shoton></stat... <shotoff><value><stats><shotoff>1</shotoff></s... <foulcommit><value><stats><foulscommitted>1</f... <card><value><comment>y</comment><stats><ycard... <cross><value><stats><crosses>1</crosses></sta... <corner><value><stats><corners>1</corners></st... <possession><value><comment>58</comment><stats... 1.40 4.75 8.0 1.40 4.50 9.50 1.33 4.8 8.3 1.36 4.50 9.50 1.40 4.77 9.91 1.36 4.5 10.0 NaN NaN NaN 1.33 4.80 12.00 NaN NaN NaN NaN NaN NaN 4769 4769 France Ligue 1 4769 France 9548 9847 73.0 Paris Saint-Germain PSG 9550 8639 65.0 LOSC Lille LIL
2652 2653 1729 1729 2010/2011 24 2011-01-22 840089 10261 8586 1 1 1.0 2.0 4.0 6.0 8.0 2.0 4.0 6.0 8.0 4.0 6.0 1.0 2.0 4.0 6.0 8.0 2.0 4.0 6.0 8.0 5.0 5.0 1.0 3.0 3.0 3.0 3.0 7.0 7.0 7.0 7.0 10.0 10.0 1.0 3.0 3.0 3.0 3.0 7.0 7.0 7.0 7.0 9.0 11.0 24227.0 49571.0 24899.0 30929.0 37475.0 24205.0 40565.0 23933.0 33852.0 35454.0 24225.0 23984.0 32870.0 24531.0 38835.0 31921.0 30895.0 31097.0 30818.0 36012.0 30840.0 30348.0 <goal><value><comment>n</comment><stats><goals... <shoton><value><stats><blocked>1</blocked></st... <shotoff><value><stats><shotoff>1</shotoff></s... <foulcommit><value><stats><foulscommitted>1</f... <card /> <cross><value><stats><crosses>1</crosses></sta... <corner><value><stats><corners>1</corners></st... <possession><value><comment>39</comment><event... 3.50 3.40 2.1 3.50 3.35 2.00 2.90 3.3 2.2 3.20 3.30 2.25 NaN NaN NaN 3.40 3.4 2.1 3.00 3.4 2.3 3.60 3.40 2.15 3.10 3.3 2.20 3.2 3.4 2.2 1729 1729 England Premier League 1729 England 3458 10261 13.0 Newcastle United NEW 3470 8586 18.0 Tottenham Hotspur TOT
24593 24594 24558 24558 2008/2009 16 2008-11-29 486341 10199 9956 0 3 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 24558 24558 Switzerland Super League 24558 Switzerland 49121 10199 897.0 FC Luzern LUZ 49115 9956 322.0 Grasshopper Club Zürich GRA
9436 9437 7809 7809 2013/2014 19 2014-02-02 1479163 8177 8165 1 3 1.0 2.0 4.0 6.0 8.0 5.0 2.0 4.0 6.0 8.0 5.0 1.0 2.0 4.0 6.0 8.0 4.0 6.0 3.0 5.0 7.0 5.0 1.0 3.0 3.0 3.0 3.0 6.0 8.0 8.0 8.0 8.0 11.0 1.0 3.0 3.0 3.0 3.0 6.0 6.0 8.0 8.0 8.0 11.0 36878.0 36057.0 95081.0 42297.0 40985.0 20125.0 38364.0 40108.0 40605.0 212960.0 50345.0 27433.0 158234.0 229723.0 27436.0 229759.0 36035.0 37042.0 194533.0 115847.0 89240.0 177720.0 <goal><value><comment>n</comment><stats><goals... <shoton /> <shotoff /> <foulcommit /> <card><value><comment>y</comment><stats><ycard... <cross /> <corner /> <possession /> 1.83 3.60 4.2 1.83 3.60 4.10 1.90 3.5 3.7 1.80 3.60 4.33 1.93 3.61 4.46 1.91 3.3 4.2 1.83 3.5 3.8 1.90 3.75 4.30 NaN NaN NaN NaN NaN NaN 7809 7809 Germany 1. Bundesliga 7809 Germany 15626 8177 166.0 Hertha BSC Berlin HBE 16239 8165 171.0 1. FC Nürnberg NUR
In [21]:
# Contains football-data.co.uk collected results, fixtures and market odds as well as in-game statistics.
football_data = pd.read_csv('football_betting_odds.csv')
/anaconda3/lib/python3.6/site-packages/IPython/core/interactiveshell.py:2785: DtypeWarning: Columns (35,48,81) have mixed types. Specify dtype option on import or set low_memory=False.
  interactivity=interactivity, compiler=compiler, result=result)
In [22]:
football_data.head()
Out[22]:
Season Date Div Country League Referee HomeTeam AwayTeam FTHG FTAG FTR HTHG HTAG HTR PSH PSD PSA B365H B365D B365A LBH LBD LBA BWH BWD BWA ABP AC AF AFKC AHW AO AR AS AST AT AY Attendance B365<2.5 B365>2.5 B365AH B365AHA B365AHH BSA BSD BSH Bb1X2 BbAH BbAHh BbAv<2.5 BbAv>2.5 BbAvA BbAvAHA BbAvAHH BbAvD BbAvH BbMx<2.5 BbMx>2.5 BbMxA BbMxAHA BbMxAHH BbMxD BbMxH BbOU GB<2.5 GB>2.5 GBA GBAH GBAHA GBAHH GBD GBH HBP HC HF HFKC HHW HO HR HS HST HT HY IWA IWD IWH LBAH LBAHA LBAHH PSCA PSCD PSCH SBA SBD SBH SJA SJD SJH SOA SOD SOH SYA SYD SYH VCA VCD VCH WHA WHD WHH
0 2018/2019 2018-10-03 00:00:00 E1 England Championship O Langford Sheffield Weds West Brom 2 2 D 2 0 H 3.72 3.58 2.09 3.80 3.5 2.10 3.40 3.5 2.05 3.40 3.5 2.10 NaN 4.0 15.0 NaN NaN NaN 0.0 19.0 4.0 NaN 3.0 NaN NaN NaN NaN NaN NaN NaN NaN NaN 41.0 21.0 0.25 2.07 1.74 2.07 1.78 2.06 3.50 3.52 2.17 1.81 2.15 1.81 2.14 3.65 3.80 39.0 NaN NaN NaN NaN NaN NaN NaN NaN NaN 3.0 12.0 NaN NaN NaN 0.0 14.0 5.0 NaN 2.0 2.00 3.35 3.35 NaN NaN NaN 2.03 3.51 4.02 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2.10 3.6 3.60 2.10 3.5 3.50
1 2018/2019 2018-10-03 00:00:00 E1 England Championship G Ward Rotherham Bristol City 0 0 D 0 0 D 3.58 3.50 2.17 3.75 3.5 2.10 3.50 3.3 2.10 3.40 3.3 2.15 NaN 3.0 15.0 NaN NaN NaN 0.0 13.0 3.0 NaN 3.0 NaN NaN NaN NaN NaN NaN NaN NaN NaN 40.0 21.0 0.25 1.83 1.96 2.12 1.81 2.05 3.39 3.50 1.92 2.05 2.20 1.86 2.12 3.50 3.75 39.0 NaN NaN NaN NaN NaN NaN NaN NaN NaN 6.0 12.0 NaN NaN NaN 0.0 21.0 6.0 NaN 2.0 2.05 3.20 3.35 NaN NaN NaN 2.02 3.66 3.89 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2.10 3.5 3.75 2.15 3.4 3.50
2 2018/2019 2018-10-03 00:00:00 E1 England Championship J Moss Nott'm Forest Millwall 2 2 D 1 0 H 1.93 3.57 4.34 1.95 3.5 4.33 1.91 3.3 4.20 1.91 3.4 4.10 NaN 7.0 11.0 NaN NaN NaN 0.0 20.0 10.0 NaN 2.0 NaN NaN NaN NaN NaN NaN NaN NaN NaN 40.0 21.0 -0.75 1.73 2.09 4.14 1.69 2.19 3.46 1.91 1.79 2.20 4.46 1.75 2.25 3.60 1.95 39.0 NaN NaN NaN NaN NaN NaN NaN NaN NaN 2.0 16.0 NaN NaN NaN 0.0 7.0 2.0 NaN 1.0 3.95 3.25 1.85 NaN NaN NaN 4.88 3.61 1.83 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.30 3.6 1.93 4.00 3.6 1.91
3 2018/2019 2018-10-03 00:00:00 E1 England Championship G Eltringham Derby Norwich 1 1 D 0 0 D 2.15 3.50 3.63 2.14 3.4 3.80 2.10 3.3 3.40 2.05 3.4 3.60 NaN 8.0 17.0 NaN NaN NaN 0.0 14.0 5.0 NaN 2.0 NaN NaN NaN NaN NaN NaN NaN NaN NaN 40.0 21.0 -0.25 1.79 2.01 3.53 2.02 1.83 3.36 2.12 1.86 2.10 3.80 2.07 1.87 3.50 2.20 39.0 NaN NaN NaN NaN NaN NaN NaN NaN NaN 7.0 12.0 NaN NaN NaN 0.0 14.0 6.0 NaN 1.0 3.35 3.15 2.05 NaN NaN NaN 3.87 3.71 2.01 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 3.60 3.5 2.15 3.40 3.4 2.15
4 2018/2019 2018-10-03 00:00:00 E1 England Championship R Jones Blackburn Sheffield United 0 2 A 0 0 D 2.90 3.35 2.62 2.87 3.4 2.60 2.80 3.2 2.55 2.80 3.3 2.50 NaN 7.0 9.0 NaN NaN NaN 0.0 13.0 7.0 NaN 2.0 NaN NaN NaN NaN NaN NaN NaN NaN NaN 40.0 21.0 0.25 1.74 2.07 2.55 2.17 1.71 3.24 2.82 1.81 2.15 2.65 2.25 1.75 3.40 2.92 39.0 NaN NaN NaN NaN NaN NaN NaN NaN NaN 4.0 16.0 NaN NaN NaN 0.0 13.0 2.0 NaN 1.0 2.50 3.10 2.70 NaN NaN NaN 2.20 3.48 3.53 NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN 2.63 3.3 2.90 2.55 3.3 2.80
In [23]:
football_data.info(verbose= True, null_counts = True)
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 132380 entries, 0 to 132379
Data columns (total 110 columns):
Season        132380 non-null object
Date          132380 non-null object
Div           132380 non-null object
Country       132380 non-null object
League        132380 non-null object
Referee       48269 non-null object
HomeTeam      131334 non-null object
AwayTeam      131334 non-null object
FTHG          132380 non-null int64
FTAG          132380 non-null int64
FTR           132379 non-null object
HTHG          132380 non-null int64
HTAG          132380 non-null int64
HTR           132336 non-null object
PSH           47550 non-null float64
PSD           47550 non-null float64
PSA           47550 non-null float64
B365H         117274 non-null float64
B365D         117274 non-null float64
B365A         117274 non-null float64
LBH           120824 non-null float64
LBD           120824 non-null float64
LBA           120827 non-null float64
BWH           108083 non-null float64
BWD           108083 non-null float64
BWA           108083 non-null float64
ABP           6827 non-null float64
AC            71593 non-null float64
AF            70238 non-null float64
AFKC          969 non-null float64
AHW           6655 non-null float64
AO            6656 non-null float64
AR            73429 non-null float64
AS            71968 non-null float64
AST           71162 non-null float64
AT            1046 non-null object
AY            73430 non-null float64
Attendance    6816 non-null float64
B365<2.5      4054 non-null float64
B365>2.5      4054 non-null float64
B365AH        5625 non-null float64
B365AHA       5625 non-null float64
B365AHH       5625 non-null float64
BSA           46096 non-null float64
BSD           46097 non-null float64
BSH           46096 non-null float64
Bb1X2         102590 non-null float64
BbAH          102285 non-null float64
BbAHh         102284 non-null object
BbAv<2.5      102526 non-null float64
BbAv>2.5      102527 non-null float64
BbAvA         102589 non-null float64
BbAvAHA       102282 non-null float64
BbAvAHH       102284 non-null float64
BbAvD         102590 non-null float64
BbAvH         102590 non-null float64
BbMx<2.5      102526 non-null float64
BbMx>2.5      102527 non-null float64
BbMxA         102589 non-null float64
BbMxAHA       102282 non-null float64
BbMxAHH       102284 non-null float64
BbMxD         102590 non-null float64
BbMxH         102590 non-null float64
BbOU          102528 non-null float64
GB<2.5        12549 non-null float64
GB>2.5        12549 non-null float64
GBA           87912 non-null float64
GBAH          8836 non-null float64
GBAHA         8838 non-null float64
GBAHH         8859 non-null float64
GBD           87912 non-null float64
GBH           87912 non-null float64
HBP           6827 non-null float64
HC            71593 non-null float64
HF            70238 non-null float64
HFKC          969 non-null float64
HHW           6655 non-null float64
HO            6656 non-null float64
HR            73430 non-null float64
HS            71965 non-null float64
HST           71159 non-null float64
HT            1046 non-null object
HY            73429 non-null float64
IWA           128760 non-null float64
IWD           128764 non-null float64
IWH           128764 non-null float64
LBAH          4518 non-null float64
LBAHA         4519 non-null float64
LBAHH         4519 non-null float64
PSCA          46854 non-null float64
PSCD          46854 non-null float64
PSCH          46854 non-null float64
SBA           78408 non-null float64
SBD           78408 non-null float64
SBH           78407 non-null float64
SJA           70252 non-null float64
SJD           70252 non-null float64
SJH           70252 non-null float64
SOA           5591 non-null float64
SOD           5590 non-null float64
SOH           5591 non-null float64
SYA           5554 non-null float64
SYD           5554 non-null float64
SYH           5554 non-null float64
VCA           102065 non-null float64
VCD           102064 non-null float64
VCH           102065 non-null float64
WHA           126526 non-null float64
WHD           126526 non-null float64
WHH           126526 non-null float64
dtypes: float64(93), int64(4), object(13)
memory usage: 111.1+ MB
In [24]:
plt.figure(figsize=(15,15))
sns.heatmap(football_data.isnull(),yticklabels=False,cbar=False,cmap='viridis');
In [25]:
interesting_seasons =  ['2008/2009', '2009/2010', '2010/2011', '2011/2012', '2012/2013', '2013/2014', '2014/2015',
                       '2015/2016']

#Having conducted research it looks like Le Championnat is equivalent to 'Ligue 1' for France
#For Portugal it would be Liga I - Liga ZON Sagres
#Premier League is for both England and Scotland
interesting_leagues = ['Jupiler League', 'Premier League', 'Le Championnat', 'Bundesliga 1', 'Serie A', 'Eredivisie',
                       'Liga I', 'La Liga Primera Division']

football_data = football_data[football_data.Season.isin(interesting_seasons) & 
                              football_data.League.isin(interesting_leagues)]
In [26]:
football_data.info(verbose = True, null_counts = True)
<class 'pandas.core.frame.DataFrame'>
Int64Index: 22888 entries, 17327 to 79392
Data columns (total 110 columns):
Season        22888 non-null object
Date          22888 non-null object
Div           22888 non-null object
Country       22888 non-null object
League        22888 non-null object
Referee       4636 non-null object
HomeTeam      22888 non-null object
AwayTeam      22888 non-null object
FTHG          22888 non-null int64
FTAG          22888 non-null int64
FTR           22888 non-null object
HTHG          22888 non-null int64
HTAG          22888 non-null int64
HTR           22887 non-null object
PSH           11419 non-null float64
PSD           11419 non-null float64
PSA           11419 non-null float64
B365H         22882 non-null float64
B365D         22882 non-null float64
B365A         22882 non-null float64
LBH           22845 non-null float64
LBD           22845 non-null float64
LBA           22845 non-null float64
BWH           22865 non-null float64
BWD           22865 non-null float64
BWA           22865 non-null float64
ABP           0 non-null float64
AC            16431 non-null float64
AF            16429 non-null float64
AFKC          0 non-null float64
AHW           0 non-null float64
AO            0 non-null float64
AR            16431 non-null float64
AS            16431 non-null float64
AST           16431 non-null float64
AT            0 non-null object
AY            16431 non-null float64
Attendance    0 non-null float64
B365<2.5      0 non-null float64
B365>2.5      0 non-null float64
B365AH        0 non-null float64
B365AHA       0 non-null float64
B365AHH       0 non-null float64
BSA           14208 non-null float64
BSD           14208 non-null float64
BSH           14208 non-null float64
Bb1X2         22881 non-null float64
BbAH          22810 non-null float64
BbAHh         22811 non-null object
BbAv<2.5      22878 non-null float64
BbAv>2.5      22879 non-null float64
BbAvA         22881 non-null float64
BbAvAHA       22811 non-null float64
BbAvAHH       22811 non-null float64
BbAvD         22881 non-null float64
BbAvH         22881 non-null float64
BbMx<2.5      22878 non-null float64
BbMx>2.5      22879 non-null float64
BbMxA         22881 non-null float64
BbMxAHA       22811 non-null float64
BbMxAHH       22811 non-null float64
BbMxD         22881 non-null float64
BbMxH         22881 non-null float64
BbOU          22880 non-null float64
GB<2.5        0 non-null float64
GB>2.5        0 non-null float64
GBA           14209 non-null float64
GBAH          0 non-null float64
GBAHA         0 non-null float64
GBAHH         0 non-null float64
GBD           14209 non-null float64
GBH           14209 non-null float64
HBP           0 non-null float64
HC            16431 non-null float64
HF            16429 non-null float64
HFKC          0 non-null float64
HHW           0 non-null float64
HO            0 non-null float64
HR            16431 non-null float64
HS            16431 non-null float64
HST           16431 non-null float64
HT            0 non-null object
HY            16430 non-null float64
IWA           22810 non-null float64
IWD           22810 non-null float64
IWH           22810 non-null float64
LBAH          0 non-null float64
LBAHA         0 non-null float64
LBAHH         0 non-null float64
PSCA          11483 non-null float64
PSCD          11483 non-null float64
PSCH          11483 non-null float64
SBA           11348 non-null float64
SBD           11348 non-null float64
SBH           11348 non-null float64
SJA           17384 non-null float64
SJD           17384 non-null float64
SJH           17384 non-null float64
SOA           0 non-null float64
SOD           0 non-null float64
SOH           0 non-null float64
SYA           0 non-null float64
SYD           0 non-null float64
SYH           0 non-null float64
VCA           22856 non-null float64
VCD           22856 non-null float64
VCH           22856 non-null float64
WHA           22861 non-null float64
WHD           22861 non-null float64
WHH           22861 non-null float64
dtypes: float64(93), int64(4), object(13)
memory usage: 19.4+ MB
In [27]:
plt.figure(figsize=(15,15))
sns.heatmap(football_data.isnull(),yticklabels=False,cbar=False,cmap='viridis');
In [28]:
# Football Data grouped by league, match season ordered

football_data_sorted = football_data.sort_values(by=['League', 'Season'])
football_data_sorted.head()
Out[28]:
Season Date Div Country League Referee HomeTeam AwayTeam FTHG FTAG FTR HTHG HTAG HTR PSH PSD PSA B365H B365D B365A LBH LBD LBA BWH BWD BWA ABP AC AF AFKC AHW AO AR AS AST AT AY Attendance B365<2.5 B365>2.5 B365AH B365AHA B365AHH BSA BSD BSH Bb1X2 BbAH BbAHh BbAv<2.5 BbAv>2.5 BbAvA BbAvAHA BbAvAHH BbAvD BbAvH BbMx<2.5 BbMx>2.5 BbMxA BbMxAHA BbMxAHH BbMxD BbMxH BbOU GB<2.5 GB>2.5 GBA GBAH GBAHA GBAHH GBD GBH HBP HC HF HFKC HHW HO HR HS HST HT HY IWA IWD IWH LBAH LBAHA LBAHH PSCA PSCD PSCH SBA SBD SBH SJA SJD SJH SOA SOD SOH SYA SYD SYH VCA VCD VCH WHA WHD WHH
71798 2008/2009 2009-05-23 00:00:00 D1 Germany Bundesliga 1 NaN Bayern Munich Stuttgart 2 1 H 1 0 H NaN NaN NaN 1.67 4.20 4.50 1.67 3.60 4.00 1.65 4.1 4.00 NaN 4.0 21.0 NaN NaN NaN 0.0 9.0 5.0 NaN 1.0 NaN NaN NaN NaN NaN NaN 4.50 4.0 1.67 34.0 20.0 -0.75 2.66 1.43 4.45 1.97 1.89 3.98 1.67 3.00 1.45 4.80 2.02 1.93 4.54 1.73 31.0 NaN NaN 4.00 NaN NaN NaN 4.00 1.70 NaN 5.0 19.0 NaN NaN NaN 0.0 14.0 4.0 NaN 1.0 4.5 3.7 1.7 NaN NaN NaN NaN NaN NaN 4.2 3.60 1.70 4.00 4.33 1.73 NaN NaN NaN NaN NaN NaN 4.30 3.80 1.65 4.33 4.0 1.70
71799 2008/2009 2009-05-23 00:00:00 D1 Germany Bundesliga 1 NaN Bielefeld Hannover 2 2 D 1 0 H NaN NaN NaN 1.62 4.33 4.75 1.62 3.50 4.50 1.60 4.5 3.95 NaN 7.0 16.0 NaN NaN NaN 0.0 17.0 8.0 NaN 0.0 NaN NaN NaN NaN NaN NaN 4.33 4.0 1.67 35.0 18.0 -0.75 2.50 1.48 4.58 1.98 1.88 4.07 1.64 2.70 1.55 4.90 2.02 1.94 4.50 1.72 30.0 NaN NaN 4.50 NaN NaN NaN 4.00 1.62 NaN 10.0 11.0 NaN NaN NaN 0.0 17.0 6.0 NaN 2.0 4.5 4.4 1.6 NaN NaN NaN NaN NaN NaN 4.5 4.30 1.55 4.75 4.50 1.60 NaN NaN NaN NaN NaN NaN 5.00 3.75 1.57 4.50 4.2 1.67
71800 2008/2009 2009-05-23 00:00:00 D1 Germany Bundesliga 1 NaN Cottbus Leverkusen 3 0 H 0 0 D NaN NaN NaN 2.38 4.00 2.60 2.25 3.50 2.50 2.30 4.4 2.30 NaN 8.0 13.0 NaN NaN NaN 1.0 18.0 9.0 NaN 3.0 NaN NaN NaN NaN NaN NaN 2.40 4.2 2.38 34.0 20.0 0 2.39 1.52 2.55 1.95 1.85 3.89 2.36 2.63 1.55 2.68 2.05 1.97 4.45 2.55 31.0 NaN NaN 2.45 NaN NaN NaN 3.75 2.40 NaN 3.0 18.0 NaN NaN NaN 0.0 11.0 6.0 NaN 1.0 2.6 3.7 2.3 NaN NaN NaN NaN NaN NaN 2.5 3.75 2.30 2.60 4.00 2.38 NaN NaN NaN NaN NaN NaN 2.40 4.00 2.30 2.62 4.0 2.30
71801 2008/2009 2009-05-23 00:00:00 D1 Germany Bundesliga 1 NaN Ein Frankfurt Hamburg 2 3 A 0 1 A NaN NaN NaN 5.00 4.20 1.60 5.00 3.75 1.53 5.00 4.3 1.50 NaN 8.0 25.0 NaN NaN NaN 0.0 15.0 5.0 NaN 5.0 NaN NaN NaN NaN NaN NaN 1.62 4.0 5.00 35.0 19.0 0.75 2.33 1.54 1.65 1.97 1.91 3.93 4.74 2.50 1.57 1.78 2.02 1.94 4.25 5.15 31.0 NaN NaN 1.60 NaN NaN NaN 4.00 4.70 NaN 6.0 20.0 NaN NaN NaN 0.0 9.0 4.0 NaN 4.0 1.7 3.7 4.5 NaN NaN NaN NaN NaN NaN 1.6 3.80 4.75 1.60 4.20 5.00 NaN NaN NaN NaN NaN NaN 1.55 3.75 5.20 1.62 4.0 5.00
71802 2008/2009 2009-05-23 00:00:00 D1 Germany Bundesliga 1 NaN FC Koln Bochum 1 1 D 1 1 D NaN NaN NaN 2.10 3.40 3.40 1.91 3.40 3.25 1.95 3.3 3.50 NaN 5.0 10.0 NaN NaN NaN 0.0 15.0 4.0 NaN 1.0 NaN NaN NaN NaN NaN NaN 3.40 3.5 2.00 34.0 19.0 0 2.31 1.55 3.43 2.49 1.51 3.39 2.05 2.45 1.60 3.85 2.72 1.59 3.61 2.17 31.0 NaN NaN 3.40 NaN NaN NaN 3.40 2.00 NaN 7.0 18.0 NaN NaN NaN 0.0 20.0 8.0 NaN 1.0 3.6 3.5 1.9 NaN NaN NaN NaN NaN NaN 3.4 3.30 2.00 3.70 3.60 1.95 NaN NaN NaN NaN NaN NaN 3.25 3.40 2.00 3.40 3.4 2.10
In [29]:
plt.figure(figsize=(15,15))
sns.heatmap(football_data_sorted.isnull(),yticklabels=False,cbar=False,cmap='viridis');
In [30]:
match_statistics = ['Attendance', 'Referee', 'HS', 'AS', 'HST', 'AST', 'HHW', 'AHW', 'HC', 'AC', 'HF',
                    'AF', 'HFKC','AFKC','HO','AO','HY' ,'AY', 'HR' ,'AR','HBP', 'ABP' ]

match_info = ['Season', 'Country', 'League', 'Div', 'Date' ,'HomeTeam','AwayTeam','FTHG','FTAG',
              'FTR','HTHG','HTAG','HTR']

relevant_columns = match_info + match_statistics

football_data_sorted = football_data_sorted[relevant_columns]
In [31]:
football_data_sorted.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 22888 entries, 71798 to 24628
Data columns (total 35 columns):
Season        22888 non-null object
Country       22888 non-null object
League        22888 non-null object
Div           22888 non-null object
Date          22888 non-null object
HomeTeam      22888 non-null object
AwayTeam      22888 non-null object
FTHG          22888 non-null int64
FTAG          22888 non-null int64
FTR           22888 non-null object
HTHG          22888 non-null int64
HTAG          22888 non-null int64
HTR           22887 non-null object
Attendance    0 non-null float64
Referee       4636 non-null object
HS            16431 non-null float64
AS            16431 non-null float64
HST           16431 non-null float64
AST           16431 non-null float64
HHW           0 non-null float64
AHW           0 non-null float64
HC            16431 non-null float64
AC            16431 non-null float64
HF            16429 non-null float64
AF            16429 non-null float64
HFKC          0 non-null float64
AFKC          0 non-null float64
HO            0 non-null float64
AO            0 non-null float64
HY            16430 non-null float64
AY            16431 non-null float64
HR            16431 non-null float64
AR            16431 non-null float64
HBP           0 non-null float64
ABP           0 non-null float64
dtypes: float64(21), int64(4), object(10)
memory usage: 6.3+ MB
In [32]:
plt.figure(figsize=(15,15))
sns.heatmap(football_data_sorted.isnull(),yticklabels=False,cbar=False,cmap='viridis');
In [33]:
mask = football_data_sorted['HST'].isnull() | football_data_sorted['AST'].isnull()
                            
unuseful_matches = football_data_sorted[mask]
In [34]:
unuseful_matches.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 6457 entries, 72021 to 47311
Data columns (total 35 columns):
Season        6457 non-null object
Country       6457 non-null object
League        6457 non-null object
Div           6457 non-null object
Date          6457 non-null object
HomeTeam      6457 non-null object
AwayTeam      6457 non-null object
FTHG          6457 non-null int64
FTAG          6457 non-null int64
FTR           6457 non-null object
HTHG          6457 non-null int64
HTAG          6457 non-null int64
HTR           6456 non-null object
Attendance    0 non-null float64
Referee       0 non-null object
HS            0 non-null float64
AS            0 non-null float64
HST           0 non-null float64
AST           0 non-null float64
HHW           0 non-null float64
AHW           0 non-null float64
HC            0 non-null float64
AC            0 non-null float64
HF            0 non-null float64
AF            0 non-null float64
HFKC          0 non-null float64
AFKC          0 non-null float64
HO            0 non-null float64
AO            0 non-null float64
HY            0 non-null float64
AY            0 non-null float64
HR            0 non-null float64
AR            0 non-null float64
HBP           0 non-null float64
ABP           0 non-null float64
dtypes: float64(21), int64(4), object(10)
memory usage: 1.8+ MB
In [35]:
# Games per league, per match_season and per team
test_1 = unuseful_matches.groupby(['League', 'Season']).count()
test_1
Out[35]:
Country Div Date HomeTeam AwayTeam FTHG FTAG FTR HTHG HTAG HTR Attendance Referee HS AS HST AST HHW AHW HC AC HF AF HFKC AFKC HO AO HY AY HR AR HBP ABP
League Season
Eredivisie 2008/2009 306 306 306 306 306 306 306 306 306 306 306 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
2009/2010 306 306 306 306 306 306 306 306 306 306 306 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
2010/2011 306 306 306 306 306 306 306 306 306 306 306 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
2011/2012 306 306 306 306 306 306 306 306 306 306 306 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
2012/2013 306 306 306 306 306 306 306 306 306 306 306 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
2013/2014 306 306 306 306 306 306 306 306 306 306 306 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
2014/2015 306 306 306 306 306 306 306 306 306 306 306 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
2015/2016 306 306 306 306 306 306 306 306 306 306 306 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Jupiler League 2008/2009 306 306 306 306 306 306 306 306 306 306 306 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
2009/2010 210 210 210 210 210 210 210 210 210 210 210 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
2010/2011 240 240 240 240 240 240 240 240 240 240 240 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
2011/2012 240 240 240 240 240 240 240 240 240 240 240 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
2012/2013 240 240 240 240 240 240 240 240 240 240 240 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
2013/2014 240 240 240 240 240 240 240 240 240 240 240 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
2014/2015 240 240 240 240 240 240 240 240 240 240 240 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
2015/2016 240 240 240 240 240 240 240 240 240 240 240 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Liga I 2008/2009 240 240 240 240 240 240 240 240 240 240 240 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
2009/2010 240 240 240 240 240 240 240 240 240 240 240 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
2010/2011 240 240 240 240 240 240 240 240 240 240 240 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
2011/2012 240 240 240 240 240 240 240 240 240 240 240 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
2012/2013 240 240 240 240 240 240 240 240 240 240 240 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
2013/2014 240 240 240 240 240 240 240 240 240 240 240 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
2014/2015 306 306 306 306 306 306 306 306 306 306 306 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
2015/2016 306 306 306 306 306 306 306 306 306 306 306 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Serie A 2012/2013 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Useful observations gathered

Leagues that do not have useful match statistics from the football_data dataframe :

  1. Belgium Jupiler League
  2. Netherlands Eredivisie
  3. Portugal Liga ZON Sagres

By having researched online resources (namely football-data.co.uk), the following leagues also do not have useful match statistics:

  1. Poland Ekstraklasa
  2. Switzerland Super League

Therefore, we are left with the following useful leagues to conduct analysis on:

  1. England Premier League
  2. France Ligue 1
  3. Germany 1. Bundesliga
  4. Italy Serie A
  5. Scotland Premier League
  6. Spain Liga BBVA

Let us only keep the matches in the useful leagues.

In [36]:
interesting_leagues = ['Premier League', 'Le Championnat', 'Bundesliga 1', 'Serie A', 'La Liga Primera Division']

football_data_sorted = football_data_sorted[football_data.League.isin(interesting_leagues)]
/anaconda3/lib/python3.6/site-packages/ipykernel_launcher.py:3: UserWarning: Boolean Series key will be reindexed to match DataFrame index.
  This is separate from the ipykernel package so we can avoid doing imports until
In [37]:
football_data_sorted.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 16432 entries, 71798 to 24628
Data columns (total 35 columns):
Season        16432 non-null object
Country       16432 non-null object
League        16432 non-null object
Div           16432 non-null object
Date          16432 non-null object
HomeTeam      16432 non-null object
AwayTeam      16432 non-null object
FTHG          16432 non-null int64
FTAG          16432 non-null int64
FTR           16432 non-null object
HTHG          16432 non-null int64
HTAG          16432 non-null int64
HTR           16431 non-null object
Attendance    0 non-null float64
Referee       4636 non-null object
HS            16431 non-null float64
AS            16431 non-null float64
HST           16431 non-null float64
AST           16431 non-null float64
HHW           0 non-null float64
AHW           0 non-null float64
HC            16431 non-null float64
AC            16431 non-null float64
HF            16429 non-null float64
AF            16429 non-null float64
HFKC          0 non-null float64
AFKC          0 non-null float64
HO            0 non-null float64
AO            0 non-null float64
HY            16430 non-null float64
AY            16431 non-null float64
HR            16431 non-null float64
AR            16431 non-null float64
HBP           0 non-null float64
ABP           0 non-null float64
dtypes: float64(21), int64(4), object(10)
memory usage: 4.5+ MB
In [38]:
# Games per league, per match_season
test_2 = football_data_sorted.groupby(['League', 'Season']).count()
test_2
Out[38]:
Country Div Date HomeTeam AwayTeam FTHG FTAG FTR HTHG HTAG HTR Attendance Referee HS AS HST AST HHW AHW HC AC HF AF HFKC AFKC HO AO HY AY HR AR HBP ABP
League Season
Bundesliga 1 2008/2009 306 306 306 306 306 306 306 306 306 306 306 0 0 306 306 306 306 0 0 306 306 306 306 0 0 0 0 306 306 306 306 0 0
2009/2010 306 306 306 306 306 306 306 306 306 306 306 0 0 306 306 306 306 0 0 306 306 306 306 0 0 0 0 306 306 306 306 0 0
2010/2011 306 306 306 306 306 306 306 306 306 306 306 0 0 306 306 306 306 0 0 306 306 306 306 0 0 0 0 306 306 306 306 0 0
2011/2012 306 306 306 306 306 306 306 306 306 306 306 0 0 306 306 306 306 0 0 306 306 306 306 0 0 0 0 306 306 306 306 0 0
2012/2013 306 306 306 306 306 306 306 306 306 306 306 0 0 306 306 306 306 0 0 306 306 306 306 0 0 0 0 306 306 306 306 0 0
2013/2014 306 306 306 306 306 306 306 306 306 306 306 0 0 306 306 306 306 0 0 306 306 306 306 0 0 0 0 306 306 306 306 0 0
2014/2015 306 306 306 306 306 306 306 306 306 306 306 0 0 306 306 306 306 0 0 306 306 306 306 0 0 0 0 306 306 306 306 0 0
2015/2016 306 306 306 306 306 306 306 306 306 306 306 0 0 306 306 306 306 0 0 306 306 306 306 0 0 0 0 306 306 306 306 0 0
La Liga Primera Division 2008/2009 380 380 380 380 380 380 380 380 380 380 380 0 0 380 380 380 380 0 0 380 380 380 380 0 0 0 0 380 380 380 380 0 0
2009/2010 380 380 380 380 380 380 380 380 380 380 380 0 0 380 380 380 380 0 0 380 380 380 380 0 0 0 0 380 380 380 380 0 0
2010/2011 380 380 380 380 380 380 380 380 380 380 380 0 0 380 380 380 380 0 0 380 380 380 380 0 0 0 0 380 380 380 380 0 0
2011/2012 380 380 380 380 380 380 380 380 380 380 380 0 0 380 380 380 380 0 0 380 380 380 380 0 0 0 0 380 380 380 380 0 0
2012/2013 380 380 380 380 380 380 380 380 380 380 380 0 0 380 380 380 380 0 0 380 380 380 380 0 0 0 0 380 380 380 380 0 0
2013/2014 380 380 380 380 380 380 380 380 380 380 380 0 0 380 380 380 380 0 0 380 380 380 380 0 0 0 0 380 380 380 380 0 0
2014/2015 380 380 380 380 380 380 380 380 380 380 380 0 0 380 380 380 380 0 0 380 380 380 380 0 0 0 0 380 380 380 380 0 0
2015/2016 380 380 380 380 380 380 380 380 380 380 380 0 0 380 380 380 380 0 0 380 380 380 380 0 0 0 0 380 380 380 380 0 0
Le Championnat 2008/2009 380 380 380 380 380 380 380 380 380 380 380 0 0 380 380 380 380 0 0 380 380 380 380 0 0 0 0 380 380 380 380 0 0
2009/2010 380 380 380 380 380 380 380 380 380 380 380 0 0 380 380 380 380 0 0 380 380 380 380 0 0 0 0 380 380 380 380 0 0
2010/2011 380 380 380 380 380 380 380 380 380 380 380 0 0 380 380 380 380 0 0 380 380 380 380 0 0 0 0 380 380 380 380 0 0
2011/2012 380 380 380 380 380 380 380 380 380 380 380 0 0 380 380 380 380 0 0 380 380 378 378 0 0 0 0 380 380 380 380 0 0
2012/2013 380 380 380 380 380 380 380 380 380 380 380 0 0 380 380 380 380 0 0 380 380 380 380 0 0 0 0 380 380 380 380 0 0
2013/2014 380 380 380 380 380 380 380 380 380 380 380 0 0 380 380 380 380 0 0 380 380 380 380 0 0 0 0 380 380 380 380 0 0
2014/2015 380 380 380 380 380 380 380 380 380 380 380 0 0 380 380 380 380 0 0 380 380 380 380 0 0 0 0 380 380 380 380 0 0
2015/2016 380 380 380 380 380 380 380 380 380 380 380 0 0 380 380 380 380 0 0 380 380 380 380 0 0 0 0 380 380 380 380 0 0
Premier League 2008/2009 608 608 608 608 608 608 608 608 608 608 608 0 608 608 608 608 608 0 0 608 608 608 608 0 0 0 0 608 608 608 608 0 0
2009/2010 608 608 608 608 608 608 608 608 608 608 608 0 608 608 608 608 608 0 0 608 608 608 608 0 0 0 0 608 608 608 608 0 0
2010/2011 608 608 608 608 608 608 608 608 608 608 608 0 608 608 608 608 608 0 0 608 608 608 608 0 0 0 0 608 608 608 608 0 0
2011/2012 608 608 608 608 608 608 608 608 608 608 608 0 608 608 608 608 608 0 0 608 608 608 608 0 0 0 0 608 608 608 608 0 0
2012/2013 608 608 608 608 608 608 608 608 608 608 608 0 380 608 608 608 608 0 0 608 608 608 608 0 0 0 0 608 608 608 608 0 0
2013/2014 608 608 608 608 608 608 608 608 608 608 608 0 608 608 608 608 608 0 0 608 608 608 608 0 0 0 0 608 608 608 608 0 0
2014/2015 608 608 608 608 608 608 608 608 608 608 608 0 608 608 608 608 608 0 0 608 608 608 608 0 0 0 0 608 608 608 608 0 0
2015/2016 608 608 608 608 608 608 608 608 608 608 608 0 608 608 608 608 608 0 0 608 608 608 608 0 0 0 0 608 608 608 608 0 0
Serie A 2008/2009 380 380 380 380 380 380 380 380 380 380 380 0 0 380 380 380 380 0 0 380 380 380 380 0 0 0 0 380 380 380 380 0 0
2009/2010 380 380 380 380 380 380 380 380 380 380 380 0 0 380 380 380 380 0 0 380 380 380 380 0 0 0 0 380 380 380 380 0 0
2010/2011 380 380 380 380 380 380 380 380 380 380 380 0 0 380 380 380 380 0 0 380 380 380 380 0 0 0 0 380 380 380 380 0 0
2011/2012 380 380 380 380 380 380 380 380 380 380 380 0 0 380 380 380 380 0 0 380 380 380 380 0 0 0 0 380 380 380 380 0 0
2012/2013 380 380 380 380 380 380 380 380 380 380 379 0 0 379 379 379 379 0 0 379 379 379 379 0 0 0 0 379 379 379 379 0 0
2013/2014 380 380 380 380 380 380 380 380 380 380 380 0 0 380 380 380 380 0 0 380 380 380 380 0 0 0 0 380 380 380 380 0 0
2014/2015 380 380 380 380 380 380 380 380 380 380 380 0 0 380 380 380 380 0 0 380 380 380 380 0 0 0 0 379 380 380 380 0 0
2015/2016 380 380 380 380 380 380 380 380 380 380 380 0 0 380 380 380 380 0 0 380 380 380 380 0 0 0 0 380 380 380 380 0 0
In [39]:
#The column 'name' refers to the League

useful_leagues = ['England Premier League', 'France Ligue 1', 'Germany 1. Bundesliga', 'Italy Serie A',
                       'Scotland Premier League', 'Spain LIGA BBVA']

useful_matches = matches_clean[matches_clean.name.isin(useful_leagues)]
In [40]:
useful_matches.info(verbose = True, null_counts = True)
<class 'pandas.core.frame.DataFrame'>
Int64Index: 16409 entries, 1728 to 24556
Data columns (total 130 columns):
id                    16409 non-null int64
country_id            16409 non-null int64
league_id             16409 non-null int64
season                16409 non-null object
stage                 16409 non-null int64
date                  16409 non-null datetime64[ns]
match_api_id          16409 non-null int64
home_team_api_id      16409 non-null int64
away_team_api_id      16409 non-null int64
home_team_goal        16409 non-null int64
away_team_goal        16409 non-null int64
home_player_X1        16409 non-null float64
home_player_X2        16409 non-null float64
home_player_X3        16409 non-null float64
home_player_X4        16409 non-null float64
home_player_X5        16409 non-null float64
home_player_X6        16409 non-null float64
home_player_X7        16409 non-null float64
home_player_X8        16409 non-null float64
home_player_X9        16409 non-null float64
home_player_X10       16409 non-null float64
home_player_X11       16409 non-null float64
away_player_X1        16409 non-null float64
away_player_X2        16409 non-null float64
away_player_X3        16409 non-null float64
away_player_X4        16409 non-null float64
away_player_X5        16409 non-null float64
away_player_X6        16409 non-null float64
away_player_X7        16409 non-null float64
away_player_X8        16409 non-null float64
away_player_X9        16409 non-null float64
away_player_X10       16409 non-null float64
away_player_X11       16404 non-null float64
home_player_Y1        16409 non-null float64
home_player_Y2        16409 non-null float64
home_player_Y3        16409 non-null float64
home_player_Y4        16409 non-null float64
home_player_Y5        16409 non-null float64
home_player_Y6        16409 non-null float64
home_player_Y7        16409 non-null float64
home_player_Y8        16409 non-null float64
home_player_Y9        16409 non-null float64
home_player_Y10       16409 non-null float64
home_player_Y11       16409 non-null float64
away_player_Y1        16409 non-null float64
away_player_Y2        16409 non-null float64
away_player_Y3        16409 non-null float64
away_player_Y4        16409 non-null float64
away_player_Y5        16409 non-null float64
away_player_Y6        16409 non-null float64
away_player_Y7        16409 non-null float64
away_player_Y8        16409 non-null float64
away_player_Y9        16409 non-null float64
away_player_Y10       16409 non-null float64
away_player_Y11       16404 non-null float64
home_player_1         16359 non-null float64
home_player_2         16339 non-null float64
home_player_3         16348 non-null float64
home_player_4         16352 non-null float64
home_player_5         16354 non-null float64
home_player_6         16352 non-null float64
home_player_7         16352 non-null float64
home_player_8         16356 non-null float64
home_player_9         16361 non-null float64
home_player_10        16324 non-null float64
home_player_11        16335 non-null float64
away_player_1         16365 non-null float64
away_player_2         16339 non-null float64
away_player_3         16342 non-null float64
away_player_4         16350 non-null float64
away_player_5         16346 non-null float64
away_player_6         16351 non-null float64
away_player_7         16355 non-null float64
away_player_8         16343 non-null float64
away_player_9         16345 non-null float64
away_player_10        16327 non-null float64
away_player_11        16325 non-null float64
goal                  13580 non-null object
shoton                13580 non-null object
shotoff               13580 non-null object
foulcommit            13580 non-null object
card                  13580 non-null object
cross                 13580 non-null object
corner                13580 non-null object
possession            13580 non-null object
B365H                 16397 non-null float64
B365D                 16397 non-null float64
B365A                 16397 non-null float64
BWH                   16382 non-null float64
BWD                   16382 non-null float64
BWA                   16382 non-null float64
IWH                   16359 non-null float64
IWD                   16359 non-null float64
IWA                   16359 non-null float64
LBH                   16390 non-null float64
LBD                   16390 non-null float64
LBA                   16390 non-null float64
PSH                   8190 non-null float64
PSD                   8190 non-null float64
PSA                   8190 non-null float64
WHH                   16392 non-null float64
WHD                   16392 non-null float64
WHA                   16392 non-null float64
SJH                   12476 non-null float64
SJD                   12476 non-null float64
SJA                   12476 non-null float64
VCH                   16378 non-null float64
VCD                   16378 non-null float64
VCA                   16378 non-null float64
GBH                   10221 non-null float64
GBD                   10221 non-null float64
GBA                   10221 non-null float64
BSH                   10225 non-null float64
BSD                   10225 non-null float64
BSA                   10225 non-null float64
id.1                  16409 non-null int64
country_id.1          16409 non-null int64
name                  16409 non-null object
id.2                  16409 non-null int64
name.1                16409 non-null object
id.3                  16409 non-null int64
team_api_id           16409 non-null int64
team_fifa_api_id      16409 non-null float64
team_long_name        16409 non-null object
team_short_name       16409 non-null object
id.4                  16409 non-null int64
team_api_id.1         16409 non-null int64
team_fifa_api_id.1    16409 non-null float64
team_long_name.1      16409 non-null object
team_short_name.1     16409 non-null object
dtypes: datetime64[ns](1), float64(98), int64(16), object(15)
memory usage: 16.4+ MB
In [41]:
useful_matches = useful_matches.sort_values(by=['name', 'season'])
In [42]:
# Games per league, per match_season
games_played = useful_matches.groupby(['name', 'season']).count()
games_played
Out[42]:
id country_id league_id stage date match_api_id home_team_api_id away_team_api_id home_team_goal away_team_goal home_player_X1 home_player_X2 home_player_X3 home_player_X4 home_player_X5 home_player_X6 home_player_X7 home_player_X8 home_player_X9 home_player_X10 home_player_X11 away_player_X1 away_player_X2 away_player_X3 away_player_X4 away_player_X5 away_player_X6 away_player_X7 away_player_X8 away_player_X9 away_player_X10 away_player_X11 home_player_Y1 home_player_Y2 home_player_Y3 home_player_Y4 home_player_Y5 home_player_Y6 home_player_Y7 home_player_Y8 home_player_Y9 home_player_Y10 home_player_Y11 away_player_Y1 away_player_Y2 away_player_Y3 away_player_Y4 away_player_Y5 away_player_Y6 away_player_Y7 away_player_Y8 away_player_Y9 away_player_Y10 away_player_Y11 home_player_1 home_player_2 home_player_3 home_player_4 home_player_5 home_player_6 home_player_7 home_player_8 home_player_9 home_player_10 home_player_11 away_player_1 away_player_2 away_player_3 away_player_4 away_player_5 away_player_6 away_player_7 away_player_8 away_player_9 away_player_10 away_player_11 goal shoton shotoff foulcommit card cross corner possession B365H B365D B365A BWH BWD BWA IWH IWD IWA LBH LBD LBA PSH PSD PSA WHH WHD WHA SJH SJD SJA VCH VCD VCA GBH GBD GBA BSH BSD BSA id.1 country_id.1 id.2 name.1 id.3 team_api_id team_fifa_api_id team_long_name team_short_name id.4 team_api_id.1 team_fifa_api_id.1 team_long_name.1 team_short_name.1
name season
England Premier League 2008/2009 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 376 375 379 377 379 380 380 380 380 380 380 376 378 374 374 378 380 380 380 380 380 380 380 380 380 380 380 380 380 380 379 379 379 380 380 380 0 0 0 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380
2009/2010 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 378 380 380 380 380 380 380 380 380 380 380 376 380 379 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 0 0 0 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380
2010/2011 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 379 380 380 379 379 377 380 380 379 379 380 378 380 380 380 380 379 378 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 0 0 0 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380
2011/2012 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 377 380 380 380 380 379 380 380 379 380 380 377 380 380 380 377 380 380 380 379 379 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 0 0 0 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380
2012/2013 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 379 379 379 380 380 380 380 380 380 380 380 380 380 380 380 379 379 379 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380
2013/2014 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 379 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 0 0 0 0 0 0 380 380 380 380 380 380 380 380 380 380 380 380 380 380
2014/2015 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 377 380 380 380 380 380 380 380 380 380 380 377 380 380 379 379 379 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 379 379 379 380 380 380 379 379 379 380 380 380 40 40 40 380 380 380 0 0 0 0 0 0 380 380 380 380 380 380 380 380 380 380 380 380 380 380
2015/2016 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 379 380 380 380 380 380 379 380 380 380 380 379 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 379 379 379 380 380 380 380 380 380 380 380 380 380 380 380 0 0 0 380 380 380 0 0 0 0 0 0 380 380 380 380 380 380 380 380 380 380 380 380 380 380
France Ligue 1 2008/2009 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 379 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 379 375 379 375 377 380 373 375 377 379 377 376 377 378 377 378 376 374 377 372 376 378 379 0 0 0 0 0 0 0 0 379 379 379 379 379 379 379 379 379 379 379 379 0 0 0 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 380 380 380 380 380 380 380 380 380 380 380 380 380 380
2009/2010 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 378 380 379 378 380 380 380 380 380 378 379 378 380 379 376 380 380 380 380 379 379 377 0 0 0 0 0 0 0 0 379 379 379 379 379 379 379 379 379 379 379 379 0 0 0 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 380 380 380 380 380 380 380 380 380 380 380 380 380 380
2010/2011 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 378 380 380 379 379 379 379 377 380 380 377 380 377 380 378 379 380 379 380 380 380 378 233 233 233 233 233 233 233 233 379 379 379 379 379 379 379 379 379 379 379 379 0 0 0 379 379 379 377 377 377 379 379 379 379 379 379 379 379 379 380 380 380 380 380 380 380 380 380 380 380 380 380 380
2011/2012 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 379 380 380 380 379 380 379 380 380 380 380 380 380 380 380 380 378 380 380 380 380 380 273 273 273 273 273 273 273 273 380 380 380 380 380 380 379 379 379 380 380 380 0 0 0 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380
2012/2013 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 377 380 376 375 378 380 380 380 380 379 380 379 379 379 373 380 380 380 380 380 379 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 379 379 379 379 379 379 380 380 380 379 379 379 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380
2013/2014 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 378 379 380 380 380 380 380 380 380 380 380 380 379 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 379 379 379 380 380 380 380 380 380 0 0 0 0 0 0 380 380 380 380 380 380 380 380 380 380 380 380 380 380
2014/2015 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 379 378 380 379 380 380 380 380 378 379 380 380 378 379 380 380 380 380 379 376 380 380 380 380 380 380 380 380 380 380 380 380 380 380 378 378 378 380 380 380 380 380 380 380 380 380 49 49 49 380 380 380 0 0 0 0 0 0 380 380 380 380 380 380 380 380 380 380 380 380 380 380
2015/2016 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 379 380 380 380 377 380 377 380 373 379 380 380 380 380 380 377 380 374 380 375 378 380 380 380 380 380 380 380 380 379 379 379 380 380 380 380 380 380 379 379 379 380 380 380 380 380 380 0 0 0 380 380 380 0 0 0 0 0 0 380 380 380 380 380 380 380 380 380 380 380 380 380 380
Germany 1. Bundesliga 2008/2009 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 305 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 305 294 304 299 303 303 301 304 304 305 303 305 294 304 303 303 302 303 302 300 304 305 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 0 0 0 306 306 306 306 306 306 306 306 306 306 306 306 305 305 305 306 306 306 306 306 306 306 306 306 306 306 306 306 306
2009/2010 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 305 305 306 305 306 306 306 306 306 306 306 306 304 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 0 0 0 306 306 306 305 305 305 306 306 306 305 305 305 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306
2010/2011 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 305 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 305 306 306 306 306 306 306 306 305 305 306 304 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 0 0 0 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306
2011/2012 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 0 0 0 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306
2012/2013 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 306 306 306 306 306 306 306 306 306 306 306 306 306 306
2013/2014 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 304 304 304 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 0 0 0 0 0 0 306 306 306 306 306 306 306 306 306 306 306 306 306 306
2014/2015 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 303 303 303 306 306 306 306 306 306 306 306 306 26 26 26 306 306 306 0 0 0 0 0 0 306 306 306 306 306 306 306 306 306 306 306 306 306 306
2015/2016 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 0 0 0 306 306 306 0 0 0 0 0 0 306 306 306 306 306 306 306 306 306 306 306 306 306 306
Italy Serie A 2008/2009 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 374 380 378 378 379 377 378 377 377 374 380 376 380 376 376 375 379 379 377 374 372 380 380 380 380 380 380 380 380 380 380 380 378 378 378 374 374 374 379 379 379 0 0 0 378 378 378 380 380 380 379 379 379 379 379 379 379 379 379 380 380 380 380 380 380 380 380 380 380 380 380 380 380
2009/2010 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 378 380 373 380 380 377 379 380 380 379 380 379 380 373 377 379 376 377 379 379 379 379 379 379 379 379 379 379 379 370 370 370 374 374 374 378 378 378 0 0 0 377 377 377 369 369 369 374 374 374 378 378 378 379 379 379 380 380 380 380 380 380 380 380 380 380 380 380 380 380
2010/2011 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 378 369 376 380 380 380 380 380 379 380 379 379 374 376 379 379 379 379 379 379 379 379 377 377 377 376 376 376 375 375 375 377 377 377 0 0 0 378 378 378 379 379 379 367 367 367 374 374 374 369 369 369 380 380 380 380 380 380 380 380 380 380 380 380 380 380
2011/2012 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 358 356 356 358 357 358 358 357 353 355 352 358 357 354 357 357 358 358 358 357 355 355 358 358 358 358 358 358 358 358 357 357 357 357 357 357 355 355 355 357 357 357 0 0 0 357 357 357 357 357 357 357 357 357 357 357 357 355 355 355 358 358 358 358 358 358 358 358 358 358 358 358 358 358
2012/2013 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 379 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 379 380 379 380 379 380 380 380 380 380 380 380 380 378 380 380 380 380 380 380 380 380 380 379 379 379 379 379 379 379 379 379 379 379 376 376 376 376 376 376 379 379 379 376 376 376 379 379 379 379 379 379 378 378 378 376 376 376 379 379 379 380 380 380 380 380 380 380 380 380 380 380 380 380 380
2013/2014 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 378 377 376 373 380 380 380 380 379 380 380 380 375 376 374 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 379 379 379 380 380 380 380 380 380 380 380 380 0 0 0 0 0 0 380 380 380 380 380 380 380 380 380 380 380 380 380 380
2014/2015 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 378 372 370 379 379 379 379 379 379 379 377 379 375 364 379 379 379 379 379 379 379 379 379 379 379 379 379 379 376 376 376 379 379 379 379 379 379 377 377 377 19 19 19 379 379 379 0 0 0 0 0 0 379 379 379 379 379 379 379 379 379 379 379 379 379 379
2015/2016 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 379 380 377 377 380 379 379 379 375 372 380 378 380 379 380 380 380 380 376 375 371 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 0 0 0 379 379 379 0 0 0 0 0 0 380 380 380 380 380 380 380 380 380 380 380 380 380 380
Scotland Premier League 2008/2009 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 223 221 224 223 219 226 223 227 228 228 227 220 222 224 221 226 222 224 226 226 228 3 3 3 3 3 3 3 3 228 228 228 228 228 228 227 227 227 228 228 228 0 0 0 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228
2009/2010 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 224 221 222 225 224 224 228 227 225 220 224 223 221 225 225 226 224 227 225 222 220 223 4 4 4 4 4 4 4 4 228 228 228 228 228 228 228 228 228 228 228 228 0 0 0 228 228 228 228 228 228 227 227 227 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228
2010/2011 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 225 226 227 227 227 227 227 227 228 226 227 226 224 227 228 227 227 226 228 226 228 4 4 4 4 4 4 4 4 228 228 228 228 228 228 226 226 226 228 228 228 0 0 0 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228
2011/2012 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 223 228 228 227 227 228 228 228 228 228 228 226 228 227 227 227 228 228 228 228 228 2 2 2 2 2 2 2 2 228 228 228 228 228 228 228 228 228 228 228 228 0 0 0 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228
2012/2013 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 227 228 228 228 228 225 227 228 224 227 226 227 228 228 228 226 225 227 228 223 228 227 0 0 0 0 0 0 0 0 228 228 228 228 228 228 228 228 228 228 228 228 222 222 222 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228
2013/2014 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 221 228 228 228 228 226 227 228 228 226 226 221 228 228 227 228 226 228 228 228 223 226 0 0 0 0 0 0 0 0 228 228 228 228 228 228 227 227 227 228 228 228 226 226 226 228 228 228 228 228 228 228 228 228 0 0 0 0 0 0 228 228 228 228 228 228 228 228 228 228 228 228 228 228
2014/2015 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 226 224 224 223 228 228 228 228 228 228 228 226 223 226 222 228 226 228 228 228 228 0 0 0 0 0 0 0 0 228 228 228 228 228 228 227 227 227 227 227 227 227 227 227 228 228 228 34 34 34 228 228 228 0 0 0 0 0 0 228 228 228 228 228 228 228 228 228 228 228 228 228 228
2015/2016 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 228 227 226 227 227 225 228 226 223 227 226 228 228 225 227 227 228 228 226 224 225 224 0 0 0 0 0 0 0 0 228 228 228 228 228 228 228 228 228 227 227 227 223 223 223 228 228 228 0 0 0 228 228 228 0 0 0 0 0 0 228 228 228 228 228 228 228 228 228 228 228 228 228 228
Spain LIGA BBVA 2008/2009 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 371 375 368 370 374 377 373 367 375 375 376 374 373 362 371 374 376 374 363 373 373 377 380 380 380 380 380 380 380 380 379 379 379 379 379 379 379 379 379 379 379 379 0 0 0 379 379 379 379 379 379 379 379 379 378 378 378 379 379 379 380 380 380 380 380 380 380 380 380 380 380 380 380 380
2009/2010 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 376 373 372 371 374 375 368 379 378 374 379 376 374 367 371 377 373 373 378 375 376 379 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 0 0 0 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380
2010/2011 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 379 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 379 380 373 380 380 375 379 378 377 377 379 380 380 375 380 380 374 380 378 378 376 380 380 379 379 379 379 379 379 379 379 380 380 380 380 380 380 380 380 380 380 380 380 0 0 0 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380
2011/2012 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 379 380 380 379 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 0 0 0 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380
2012/2013 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 374 380 380 380 380 380 380 380 380 380 380 376 380 380 379 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 379 379 379 375 375 375 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380
2013/2014 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 379 379 379 380 380 380 380 380 380 380 380 379 378 379 379 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 378 378 378 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 0 0 0 0 0 0 380 380 380 380 380 380 380 380 380 380 380 380 380 380
2014/2015 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 379 378 377 379 378 380 380 380 380 380 380 380 377 380 378 378 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 379 379 379 379 379 379 378 378 378 380 380 380 29 29 29 380 380 380 0 0 0 0 0 0 380 380 380 380 380 380 380 380 380 380 380 380 380 380
2015/2016 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 379 380 379 380 376 378 379 378 379 380 380 379 379 378 378 375 376 379 379 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 379 379 379 380 380 380 0 0 0 380 380 380 0 0 0 0 0 0 380 380 380 380 380 380 380 380 380 380 380 380 380 380
In [43]:
plt.figure(figsize=(15,15))
sns.heatmap(useful_matches.isnull(),yticklabels=False,cbar=False,cmap='viridis');

We need to know the players that played in each match, therefore let us drop the matches that do not contain the player id for all 22 players in that match.

In [207]:
home_players = ["home_player_" + str(x) for x in range(1, 12)]
away_players = ["away_player_" + str(x) for x in range(1, 12)]

players = home_players + away_players
In [45]:
#Drop the rows where we have missing data

very_clean_matches = useful_matches.dropna(subset=players)
In [46]:
# Games per league, per match_season
games_played = very_clean_matches.groupby(['name', 'season']).count()
games_played
Out[46]:
id country_id league_id stage date match_api_id home_team_api_id away_team_api_id home_team_goal away_team_goal home_player_X1 home_player_X2 home_player_X3 home_player_X4 home_player_X5 home_player_X6 home_player_X7 home_player_X8 home_player_X9 home_player_X10 home_player_X11 away_player_X1 away_player_X2 away_player_X3 away_player_X4 away_player_X5 away_player_X6 away_player_X7 away_player_X8 away_player_X9 away_player_X10 away_player_X11 home_player_Y1 home_player_Y2 home_player_Y3 home_player_Y4 home_player_Y5 home_player_Y6 home_player_Y7 home_player_Y8 home_player_Y9 home_player_Y10 home_player_Y11 away_player_Y1 away_player_Y2 away_player_Y3 away_player_Y4 away_player_Y5 away_player_Y6 away_player_Y7 away_player_Y8 away_player_Y9 away_player_Y10 away_player_Y11 home_player_1 home_player_2 home_player_3 home_player_4 home_player_5 home_player_6 home_player_7 home_player_8 home_player_9 home_player_10 home_player_11 away_player_1 away_player_2 away_player_3 away_player_4 away_player_5 away_player_6 away_player_7 away_player_8 away_player_9 away_player_10 away_player_11 goal shoton shotoff foulcommit card cross corner possession B365H B365D B365A BWH BWD BWA IWH IWD IWA LBH LBD LBA PSH PSD PSA WHH WHD WHA SJH SJD SJA VCH VCD VCA GBH GBD GBA BSH BSD BSA id.1 country_id.1 id.2 name.1 id.3 team_api_id team_fifa_api_id team_long_name team_short_name id.4 team_api_id.1 team_fifa_api_id.1 team_long_name.1 team_short_name.1
name season
England Premier League 2008/2009 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 0 0 0 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348
2009/2010 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 0 0 0 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373 373
2010/2011 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 0 0 0 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367
2011/2012 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 0 0 0 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367 367
2012/2013 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 379 379 379 380 380 380 380 380 380 380 380 380 380 380 380 379 379 379 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380 380
2013/2014 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 379 0 0 0 0 0 0 379 379 379 379 379 379 379 379 379 379 379 379 379 379
2014/2015 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 371 370 370 370 371 371 371 370 370 370 371 371 371 40 40 40 371 371 371 0 0 0 0 0 0 371 371 371 371 371 371 371 371 371 371 371 371 371 371
2015/2016 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 377 376 376 376 377 377 377 377 377 377 377 377 377 377 377 377 0 0 0 377 377 377 0 0 0 0 0 0 377 377 377 377 377 377 377 377 377 377 377 377 377 377
France Ligue 1 2008/2009 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 323 0 0 0 0 0 0 0 0 322 322 322 322 322 322 322 322 322 322 322 322 0 0 0 322 322 322 322 322 322 322 322 322 322 322 322 322 322 322 323 323 323 323 323 323 323 323 323 323 323 323 323 323
2009/2010 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 363 0 0 0 0 0 0 0 0 362 362 362 362 362 362 362 362 362 362 362 362 0 0 0 362 362 362 362 362 362 362 362 362 362 362 362 362 362 362 363 363 363 363 363 363 363 363 363 363 363 363 363 363
2010/2011 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 359 221 221 221 221 221 221 221 221 358 358 358 358 358 358 358 358 358 358 358 358 0 0 0 358 358 358 356 356 356 358 358 358 358 358 358 358 358 358 359 359 359 359 359 359 359 359 359 359 359 359 359 359
2011/2012 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 270 270 270 270 270 270 270 270 375 375 375 375 375 375 374 374 374 375 375 375 0 0 0 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375 375
2012/2013 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 353 353 353 353 353 353 354 354 354 353 353 353 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354
2013/2014 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 375 375 375 376 376 376 376 376 376 0 0 0 0 0 0 376 376 376 376 376 376 376 376 376 376 376 376 376 376
2014/2015 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 365 363 363 363 365 365 365 365 365 365 365 365 365 47 47 47 365 365 365 0 0 0 0 0 0 365 365 365 365 365 365 365 365 365 365 365 365 365 365
2015/2016 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 349 348 348 348 349 349 349 349 349 349 0 0 0 349 349 349 0 0 0 0 0 0 349 349 349 349 349 349 349 349 349 349 349 349 349 349
Germany 1. Bundesliga 2008/2009 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 242 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 242 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 243 0 0 0 243 243 243 243 243 243 243 243 243 243 243 243 242 242 242 243 243 243 243 243 243 243 243 243 243 243 243 243 243
2009/2010 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 0 0 0 301 301 301 300 300 300 301 301 301 300 300 300 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301 301
2010/2011 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 301 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 301 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 0 0 0 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302 302
2011/2012 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 0 0 0 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306
2012/2013 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 305 306 306 306 306 306 306 306 306 306 306 306 306 306 306
2013/2014 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 304 304 304 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 0 0 0 0 0 0 306 306 306 306 306 306 306 306 306 306 306 306 306 306
2014/2015 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 303 303 303 306 306 306 306 306 306 306 306 306 26 26 26 306 306 306 0 0 0 0 0 0 306 306 306 306 306 306 306 306 306 306 306 306 306 306
2015/2016 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 306 0 0 0 306 306 306 0 0 0 0 0 0 306 306 306 306 306 306 306 306 306 306 306 306 306 306
Italy Serie A 2008/2009 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 321 320 320 320 319 319 319 320 320 320 0 0 0 319 319 319 321 321 321 320 320 320 320 320 320 320 320 320 321 321 321 321 321 321 321 321 321 321 321 321 321 321
2009/2010 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 347 347 347 347 347 347 347 347 347 347 347 338 338 338 343 343 343 346 346 346 0 0 0 345 345 345 337 337 337 342 342 342 346 346 346 347 347 347 348 348 348 348 348 348 348 348 348 348 348 348 348 348
2010/2011 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 350 349 349 349 349 349 349 349 349 347 347 347 346 346 346 345 345 345 348 348 348 0 0 0 348 348 348 349 349 349 338 338 338 345 345 345 340 340 340 350 350 350 350 350 350 350 350 350 350 350 350 350 350
2011/2012 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 325 324 324 324 324 324 324 322 322 322 324 324 324 0 0 0 324 324 324 324 324 324 324 324 324 324 324 324 323 323 323 325 325 325 325 325 325 325 325 325 325 325 325 325 325
2012/2013 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 375 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 375 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 376 375 375 375 375 375 375 375 375 375 375 375 372 372 372 372 372 372 375 375 375 372 372 372 375 375 375 375 375 375 374 374 374 372 372 372 375 375 375 376 376 376 376 376 376 376 376 376 376 376 376 376 376
2013/2014 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 348 347 347 347 348 348 348 348 348 348 348 348 348 0 0 0 0 0 0 348 348 348 348 348 348 348 348 348 348 348 348 348 348
2014/2015 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 343 340 340 340 343 343 343 343 343 343 341 341 341 15 15 15 343 343 343 0 0 0 0 0 0 343 343 343 343 343 343 343 343 343 343 343 343 343 343
2015/2016 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 336 0 0 0 335 335 335 0 0 0 0 0 0 336 336 336 336 336 336 336 336 336 336 336 336 336 336
Scotland Premier League 2008/2009 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 3 3 3 3 3 3 3 3 158 158 158 158 158 158 157 157 157 158 158 158 0 0 0 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158 158
2009/2010 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 4 4 4 4 4 4 4 4 162 162 162 162 162 162 162 162 162 162 162 162 0 0 0 162 162 162 162 162 162 161 161 161 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162 162
2010/2011 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 4 4 4 4 4 4 4 4 204 204 204 204 204 204 203 203 203 204 204 204 0 0 0 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204
2011/2012 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 2 2 2 2 2 2 2 2 216 216 216 216 216 216 216 216 216 216 216 216 0 0 0 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216 216
2012/2013 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 0 0 0 0 0 0 0 0 204 204 204 204 204 204 204 204 204 204 204 204 199 199 199 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204 204
2013/2014 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 0 0 0 0 0 0 0 0 200 200 200 200 200 200 199 199 199 200 200 200 198 198 198 200 200 200 200 200 200 200 200 200 0 0 0 0 0 0 200 200 200 200 200 200 200 200 200 200 200 200 200 200
2014/2015 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 200 0 0 0 0 0 0 0 0 200 200 200 200 200 200 199 199 199 199 199 199 199 199 199 200 200 200 25 25 25 200 200 200 0 0 0 0 0 0 200 200 200 200 200 200 200 200 200 200 200 200 200 200
2015/2016 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 197 0 0 0 0 0 0 0 0 197 197 197 197 197 197 197 197 197 197 197 197 193 193 193 197 197 197 0 0 0 197 197 197 0 0 0 0 0 0 197 197 197 197 197 197 197 197 197 197 197 197 197 197
Spain LIGA BBVA 2008/2009 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 251 250 250 250 250 250 250 250 250 250 250 250 250 0 0 0 250 250 250 250 250 250 250 250 250 249 249 249 250 250 250 251 251 251 251 251 251 251 251 251 251 251 251 251 251
2009/2010 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 0 0 0 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278 278
2010/2011 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 343 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 343 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 343 343 343 343 343 343 343 343 344 344 344 344 344 344 344 344 344 344 344 344 0 0 0 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344 344
2011/2012 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 0 0 0 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378 378
2012/2013 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 368 368 368 365 365 365 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369 369
2013/2014 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 370 370 370 372 372 372 372 372 372 372 372 372 372 372 372 372 372 372 0 0 0 0 0 0 372 372 372 372 372 372 372 372 372 372 372 372 372 372
2014/2015 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 364 363 363 363 363 363 363 362 362 362 364 364 364 28 28 28 364 364 364 0 0 0 0 0 0 364 364 364 364 364 364 364 364 364 364 364 364 364 364
2015/2016 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 0 0 0 351 351 351 0 0 0 0 0 0 351 351 351 351 351 351 351 351 351 351 351 351 351 351

Let us keep the German League as it has the most complete rich data-set compared to all other leagues.

In [47]:
bundesliga = useful_matches[useful_matches['name'] == 'Germany 1. Bundesliga']
In [48]:
plt.figure(figsize=(15,15))
sns.heatmap(bundesliga.isnull(),yticklabels=False,cbar=False,cmap='viridis');
In [49]:
bundesliga_stats = football_data_sorted[football_data_sorted['League'] == 'Bundesliga 1']
In [50]:
plt.figure(figsize=(15,15))
sns.heatmap(bundesliga_stats.isnull(),yticklabels=False,cbar=False,cmap='viridis');
In [51]:
bundesliga.head()
Out[51]:
id country_id league_id season stage date match_api_id home_team_api_id away_team_api_id home_team_goal away_team_goal home_player_X1 home_player_X2 home_player_X3 home_player_X4 home_player_X5 home_player_X6 home_player_X7 home_player_X8 home_player_X9 home_player_X10 home_player_X11 away_player_X1 away_player_X2 away_player_X3 away_player_X4 away_player_X5 away_player_X6 away_player_X7 away_player_X8 away_player_X9 away_player_X10 away_player_X11 home_player_Y1 home_player_Y2 home_player_Y3 home_player_Y4 home_player_Y5 home_player_Y6 home_player_Y7 home_player_Y8 home_player_Y9 home_player_Y10 home_player_Y11 away_player_Y1 away_player_Y2 away_player_Y3 away_player_Y4 away_player_Y5 away_player_Y6 away_player_Y7 away_player_Y8 away_player_Y9 away_player_Y10 away_player_Y11 home_player_1 home_player_2 home_player_3 home_player_4 home_player_5 home_player_6 home_player_7 home_player_8 home_player_9 home_player_10 home_player_11 away_player_1 away_player_2 away_player_3 away_player_4 away_player_5 away_player_6 away_player_7 away_player_8 away_player_9 away_player_10 away_player_11 goal shoton shotoff foulcommit card cross corner possession B365H B365D B365A BWH BWD BWA IWH IWD IWA LBH LBD LBA PSH PSD PSA WHH WHD WHA SJH SJD SJA VCH VCD VCA GBH GBD GBA BSH BSD BSA id.1 country_id.1 name id.2 name.1 id.3 team_api_id team_fifa_api_id team_long_name team_short_name id.4 team_api_id.1 team_fifa_api_id.1 team_long_name.1 team_short_name.1
7808 7809 7809 7809 2008/2009 1 2008-08-15 499317 9823 9790 2 2 1.0 2.0 4.0 6.0 8.0 5.0 4.0 6.0 5.0 4.0 6.0 1.0 2.0 4.0 6.0 8.0 3.0 5.0 7.0 3.0 5.0 7.0 1.0 3.0 3.0 3.0 3.0 5.0 7.0 7.0 9.0 11.0 11.0 1.0 3.0 3.0 3.0 3.0 7.0 7.0 7.0 10.0 10.0 10.0 27284.0 35988.0 39774.0 33085.0 30894.0 38244.0 30872.0 38843.0 95078.0 30638.0 32118.0 25524.0 36183.0 27293.0 37787.0 37156.0 30749.0 30598.0 39106.0 38216.0 33101.0 30764.0 <goal><value><comment>n</comment><stats><goals... <shoton /> <shotoff /> <foulcommit /> <card><value><comment>y</comment><stats><ycard... <cross /> <corner /> <possession /> 1.57 3.8 6.0 1.55 3.70 5.45 1.6 3.6 4.8 1.53 3.50 5.50 NaN NaN NaN 1.53 3.5 5.5 1.62 3.40 5.50 1.55 3.50 5.50 1.60 3.60 5.75 1.53 3.75 5.50 7809 7809 Germany 1. Bundesliga 7809 Germany 15617 9823 21.0 FC Bayern Munich BMU 15618 9790 28.0 Hamburger SV HAM
7809 7810 7809 7809 2008/2009 1 2008-08-16 499318 8178 9789 2 3 1.0 2.0 4.0 6.0 8.0 5.0 3.0 5.0 7.0 4.0 6.0 1.0 2.0 4.0 6.0 8.0 2.0 4.0 6.0 8.0 4.0 6.0 1.0 3.0 3.0 3.0 3.0 5.0 7.0 7.0 7.0 10.0 10.0 1.0 3.0 3.0 3.0 3.0 7.0 7.0 7.0 7.0 10.0 10.0 36147.0 27427.0 27492.0 128037.0 28081.0 27429.0 34681.0 49939.0 30937.0 27556.0 31199.0 27358.0 79737.0 71399.0 36388.0 27360.0 43319.0 36132.0 30707.0 27363.0 31718.0 27514.0 <goal><value><comment>n</comment><stats><goals... <shoton /> <shotoff /> <foulcommit /> <card><value><comment>y</comment><stats><ycard... <cross /> <corner /> <possession /> 2.05 3.3 3.6 2.05 3.25 3.30 2.0 3.3 3.2 1.91 3.25 3.40 NaN NaN NaN 1.95 3.1 3.5 1.91 3.25 3.75 2.00 3.25 3.25 2.05 3.30 3.50 2.00 3.25 3.40 7809 7809 Germany 1. Bundesliga 7809 Germany 15619 8178 32.0 Bayer 04 Leverkusen LEV 15620 9789 22.0 Borussia Dortmund DOR
7810 7811 7809 7809 2008/2009 1 2008-08-16 499319 10189 9904 3 0 1.0 2.0 4.0 6.0 8.0 3.0 5.0 7.0 4.0 6.0 5.0 1.0 2.0 4.0 6.0 8.0 3.0 5.0 7.0 5.0 4.0 6.0 1.0 3.0 3.0 3.0 3.0 6.0 6.0 6.0 8.0 8.0 11.0 1.0 3.0 3.0 3.0 3.0 5.0 5.0 5.0 8.0 10.0 10.0 37322.0 27461.0 68253.0 27301.0 30250.0 30251.0 27483.0 27307.0 35997.0 25773.0 30249.0 27341.0 30811.0 27286.0 NaN 25483.0 27351.0 27349.0 39045.0 34400.0 30854.0 39840.0 <goal><value><comment>n</comment><stats><goals... <shoton /> <shotoff /> <foulcommit /> <card><value><comment>y</comment><stats><ycard... <cross /> <corner /> <possession /> 1.57 3.8 6.0 1.60 3.65 5.00 1.6 3.6 4.8 1.57 3.50 5.00 NaN NaN NaN 1.60 3.4 4.8 1.62 3.40 5.50 1.50 3.60 6.00 1.60 3.60 5.60 1.57 3.75 5.00 7809 7809 Germany 1. Bundesliga 7809 Germany 15621 10189 34.0 FC Schalke 04 S04 15622 9904 485.0 Hannover 96 HAN
7811 7812 7809 7809 2008/2009 1 2008-08-16 499320 8721 8722 2 1 1.0 2.0 4.0 6.0 8.0 5.0 3.0 5.0 7.0 4.0 6.0 1.0 2.0 4.0 6.0 8.0 5.0 4.0 6.0 5.0 4.0 6.0 1.0 3.0 3.0 3.0 3.0 5.0 7.0 7.0 7.0 10.0 10.0 1.0 3.0 3.0 3.0 3.0 5.0 7.0 7.0 9.0 11.0 11.0 30820.0 30906.0 30914.0 30902.0 37317.0 19511.0 30530.0 27324.0 38606.0 39902.0 27339.0 26173.0 42184.0 97491.0 38215.0 23628.0 30789.0 36395.0 36031.0 33348.0 38848.0 39805.0 <goal><value><comment>n</comment><stats><goals... <shoton /> <shotoff /> <foulcommit /> <card><value><comment>y</comment><stats><ycard... <cross /> <corner /> <possession /> 1.62 3.6 6.0 1.55 3.75 5.40 1.6 3.6 4.8 1.57 3.50 5.00 NaN NaN NaN 1.57 3.5 5.0 1.53 3.50 6.00 1.60 3.40 5.00 1.63 3.60 5.50 1.57 3.75 5.00 7809 7809 Germany 1. Bundesliga 7809 Germany 15623 8721 175.0 VfL Wolfsburg WOL 15624 8722 31.0 1. FC Köln FCK
7812 7813 7809 7809 2008/2009 1 2008-08-17 499321 9810 8177 0 2 1.0 2.0 4.0 6.0 8.0 4.0 6.0 2.0 8.0 4.0 6.0 1.0 2.0 4.0 6.0 8.0 2.0 4.0 6.0 8.0 5.0 5.0 1.0 3.0 3.0 3.0 3.0 5.0 5.0 7.0 7.0 10.0 10.0 1.0 3.0 3.0 3.0 3.0 7.0 7.0 7.0 7.0 9.0 11.0 27467.0 27472.0 26383.0 27475.0 30912.0 27471.0 38863.0 41923.0 41034.0 37760.0 27481.0 24104.0 25815.0 45352.0 30693.0 37332.0 36130.0 13518.0 16300.0 31244.0 25819.0 36788.0 <goal><value><comment>n</comment><stats><goals... <shoton /> <shotoff /> <foulcommit /> <card><value><comment>y</comment><stats><ycard... <cross /> <corner /> <possession /> 2.35 3.3 3.0 2.35 3.15 2.80 2.2 3.3 2.8 2.20 3.25 2.75 NaN NaN NaN 2.20 3.2 2.8 2.10 3.20 3.25 2.20 3.25 2.90 2.35 3.15 3.00 2.25 3.25 2.88 7809 7809 Germany 1. Bundesliga 7809 Germany 15625 9810 1824.0 Eintracht Frankfurt EFR 15626 8177 166.0 Hertha BSC Berlin HBE
In [52]:
id_team_home = bundesliga[['home_team_api_id', 'team_long_name']].copy()

id_team_home.rename(columns={'home_team_api_id': 'api_id'}, inplace=True)
id_team_home.rename(columns={'team_long_name': 'team_name'}, inplace=True)


id_team_away = bundesliga[['away_team_api_id', 'team_long_name.1']].copy()

id_team_away.rename(columns={'away_team_api_id': 'api_id'}, inplace=True)
id_team_away.rename(columns={'team_long_name.1': 'team_name'}, inplace=True)



id_team = pd.concat([id_team_home, id_team_away], ignore_index=True)
In [53]:
id_team.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 4896 entries, 0 to 4895
Data columns (total 2 columns):
api_id       4896 non-null int64
team_name    4896 non-null object
dtypes: int64(1), object(1)
memory usage: 76.6+ KB
In [54]:
print(any(id_team['team_name'].duplicated())) 
True
In [55]:
id_team = id_team.drop_duplicates(subset = 'team_name', keep = 'first')
In [56]:
id_team.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 30 entries, 0 to 2158
Data columns (total 2 columns):
api_id       30 non-null int64
team_name    30 non-null object
dtypes: int64(1), object(1)
memory usage: 720.0+ bytes
In [57]:
id_team.team_name.values
Out[57]:
array(['FC Bayern Munich', 'Bayer 04 Leverkusen', 'FC Schalke 04',
       'VfL Wolfsburg', 'Eintracht Frankfurt', 'DSC Arminia Bielefeld',
       'FC Energie Cottbus', 'Borussia Mönchengladbach', 'Karlsruher SC',
       'Hamburger SV', 'SV Werder Bremen', 'Hertha BSC Berlin',
       '1. FC Köln', 'VfL Bochum', 'Borussia Dortmund', 'VfB Stuttgart',
       'Hannover 96', 'TSG 1899 Hoffenheim', 'SC Freiburg',
       '1. FC Nürnberg', '1. FSV Mainz 05', '1. FC Kaiserslautern',
       'FC St. Pauli', 'FC Augsburg', 'SpVgg Greuther Fürth',
       'Fortuna Düsseldorf', 'Eintracht Braunschweig', 'SC Paderborn 07',
       'SV Darmstadt 98', 'FC Ingolstadt 04'], dtype=object)
In [58]:
bundesliga_stats.HomeTeam.unique()
Out[58]:
array(['Bayern Munich', 'Bielefeld', 'Cottbus', 'Ein Frankfurt',
       'FC Koln', 'Karlsruhe', "M'gladbach", 'Schalke 04', 'Wolfsburg',
       'Werder Bremen', 'Stuttgart', 'Hoffenheim', 'Hertha', 'Hannover',
       'Hamburg', 'Dortmund', 'Bochum', 'Leverkusen', 'Freiburg', 'Mainz',
       'Nurnberg', 'Kaiserslautern', 'St Pauli', 'Augsburg',
       'Greuther Furth', 'Fortuna Dusseldorf', 'Braunschweig',
       'Paderborn', 'Darmstadt', 'Ingolstadt'], dtype=object)
In [59]:
# pip install fuzzywuzzy
from fuzzywuzzy import fuzz
from fuzzywuzzy import process

def match_name(name, list_names, min_score=0):
    # -1 score incase we don't get any matches
    max_score = -1
    # Returning empty name for no match as well
    max_name = ""
    
    
    ratio_tuples_list = []
    ratio_scores_list = []
    
    #Extracting the best score from each algorithm in the fuzzy wuzzy library
    simple_ratio_best_score = process.extractOne(name, list_names, scorer= fuzz.ratio )
    
    #Returns tuple with match and best score i.e. Apple Inc , 89
    partial_ratio_best_score = process.extractOne(name, list_names, scorer= fuzz.partial_ratio )
    
    token_sort_ratio_best_score = process.extractOne(name, list_names, scorer= fuzz.token_sort_ratio)
    
    token_set_ratio_best_score = process.extractOne(name, list_names, scorer= fuzz.token_set_ratio )
    
    quick_ratio_best_score = process.extractOne(name, list_names, scorer= fuzz.QRatio)
    
    unicodequick_ratio_best_score = process.extractOne(name, list_names, scorer = fuzz.UQRatio)
    
    weighted_ratio_best_score = process.extractOne(name, list_names, scorer = fuzz.WRatio)
    
    unicodeweighted_ratio_best_score = process.extractOne(name, list_names, scorer = fuzz.UWRatio)
    
    ratio_tuples_list = [simple_ratio_best_score, partial_ratio_best_score, token_sort_ratio_best_score,
                            token_set_ratio_best_score, quick_ratio_best_score, unicodequick_ratio_best_score,
                            weighted_ratio_best_score, unicodeweighted_ratio_best_score]
    
    
    ratio_scores_list = []
    
    for ratio_tuple_item in ratio_tuples_list:
        #Store the numerical score from each tuple item (name, score)
        ratio_scores_list.append(ratio_tuple_item[1])
    
    best_score = max(ratio_scores_list)
    
    best_score_position = ratio_scores_list.index(best_score)
    best_match = ratio_tuples_list[best_score_position][0] 
    
    #best_score_id = ratio_tuples_list[best_score_position][2]
    
            
    return (ratio_tuples_list, best_score, best_match)
In [60]:
query_result = id_team.query("team_name=='VfL Wolfsburg'")

query_result
Out[60]:
api_id team_name
3 8721 VfL Wolfsburg
In [61]:
result = id_team[id_team['team_name'] == 'VfL Wolfsburg']
In [62]:
result.iloc[0]['api_id']
Out[62]:
8721
In [63]:
# List for dicts for easy dataframe creation
dict_list = []

# iterating over our players in the interesting_matches dataframe
for name in bundesliga_stats.HomeTeam.unique():
    # Use our method to find best match, we can set a threshold here
    match, best_score, best_match = match_name(name, id_team.team_name, 50)
    
    #Select the correct ID from the table id_team
    result = id_team[id_team['team_name'] == best_match]
    best_match_id = result.iloc[0]['api_id']
    
    # New dict for storing data
    dict_ = {}
    dict_.update({"Unmatched_name" : name})
    dict_.update({"Best_score" : best_score})
    dict_.update({"Best_match" : best_match})
    dict_.update({"Best_match_id" : best_match_id})
    
    
    dict_.update({"Simple Ratio Name" : match[0][0]})
    dict_.update({"Simple Ratio Score" : match[0][1]})
    dict_.update({"Simple Ratio ID" : match[0][2]})
    
    dict_.update({"Partial Ratio Name" : match[1][0]})
    dict_.update({"Partial Ratio Score" : match[1][1]})
    dict_.update({"Partial Ratio ID" : match[1][2]})
    
    dict_.update({"Token Sort Ratio Name" : match[2][0]})
    dict_.update({"Token Sort Ratio Score" : match[2][1]})
    dict_.update({"Token Sort Ratio ID" : match[2][2]})
    
    dict_.update({"Token Set Ratio Name" : match[3][0]})
    dict_.update({"Token Set Ratio Score" : match[3][1]})
    dict_.update({"Token Set Ratio ID" : match[3][2]})
    
    dict_.update({"Quick Ratio Name" : match[4][0]})
    dict_.update({"Quick Set Ratio Score" : match[4][1]})
    dict_.update({"Quick Set Ratio ID" : match[4][2]})
    
    dict_.update({"Unicode Quick Ratio Name" : match[5][0]})
    dict_.update({"Unicode Quick Ratio Score" : match[5][1]})
    dict_.update({"Unicode Quick Ratio ID" : match[5][2]})
    
    dict_.update({"Weighted Ratio Name" : match[6][0]})
    dict_.update({"Weighted Ratio Score" : match[6][1]})
    dict_.update({"Weighted Ratio ID" : match[6][2]})

    dict_.update({"Unicode Weighted Ratio Name" : match[7][0]})
    dict_.update({"Unicode Weighted Ratio Score" : match[7][1]})
    dict_.update({"Unicode Weighted Ratio ID" : match[7][2]})
    
    #dict_.update({"tuples" : match})
    #dict_.update({"score" : best_score})
    dict_list.append(dict_)
    
merge_table = pd.DataFrame(dict_list)


# Save results


merge_table.to_csv("comparison_table", index=False)

merge_table.to_excel("comparison_table_excel.xlsx")  # doctest: +SKIP

Compute Merge on Home Team

In [64]:
merge_table.head()
Out[64]:
Best_match Best_match_id Best_score Partial Ratio ID Partial Ratio Name Partial Ratio Score Quick Ratio Name Quick Set Ratio ID Quick Set Ratio Score Simple Ratio ID Simple Ratio Name Simple Ratio Score Token Set Ratio ID Token Set Ratio Name Token Set Ratio Score Token Sort Ratio ID Token Sort Ratio Name Token Sort Ratio Score Unicode Quick Ratio ID Unicode Quick Ratio Name Unicode Quick Ratio Score Unicode Weighted Ratio ID Unicode Weighted Ratio Name Unicode Weighted Ratio Score Unmatched_name Weighted Ratio ID Weighted Ratio Name Weighted Ratio Score
0 FC Bayern Munich 9823 100 0 FC Bayern Munich 100 FC Bayern Munich 0 90 0 FC Bayern Munich 90 0 FC Bayern Munich 100 0 FC Bayern Munich 90 0 FC Bayern Munich 90 0 FC Bayern Munich 95 Bayern Munich 0 FC Bayern Munich 95
1 DSC Arminia Bielefeld 9912 100 5 DSC Arminia Bielefeld 100 DSC Arminia Bielefeld 5 60 5 DSC Arminia Bielefeld 60 5 DSC Arminia Bielefeld 100 5 DSC Arminia Bielefeld 60 5 DSC Arminia Bielefeld 60 5 DSC Arminia Bielefeld 90 Bielefeld 5 DSC Arminia Bielefeld 90
2 FC Energie Cottbus 8398 100 6 FC Energie Cottbus 100 FC Energie Cottbus 6 56 6 FC Energie Cottbus 56 6 FC Energie Cottbus 100 6 FC Energie Cottbus 56 6 FC Energie Cottbus 56 6 FC Energie Cottbus 90 Cottbus 6 FC Energie Cottbus 90
3 Eintracht Frankfurt 9810 82 4 Eintracht Frankfurt 77 Eintracht Frankfurt 4 81 4 Eintracht Frankfurt 81 4 Eintracht Frankfurt 82 4 Eintracht Frankfurt 81 4 Eintracht Frankfurt 81 4 Eintracht Frankfurt 81 Ein Frankfurt 4 Eintracht Frankfurt 81
4 1. FC Köln 8722 86 15 1. FC Köln 86 1. FC Köln 15 75 15 1. FC Köln 71 15 1. FC Köln 80 15 1. FC Köln 80 15 1. FC Köln 71 0 FC Bayern Munich 86 FC Koln 0 FC Bayern Munich 86
In [65]:
merge_table.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 30 entries, 0 to 29
Data columns (total 28 columns):
Best_match                      30 non-null object
Best_match_id                   30 non-null int64
Best_score                      30 non-null int64
Partial Ratio ID                30 non-null int64
Partial Ratio Name              30 non-null object
Partial Ratio Score             30 non-null int64
Quick Ratio Name                30 non-null object
Quick Set Ratio ID              30 non-null int64
Quick Set Ratio Score           30 non-null int64
Simple Ratio ID                 30 non-null int64
Simple Ratio Name               30 non-null object
Simple Ratio Score              30 non-null int64
Token Set Ratio ID              30 non-null int64
Token Set Ratio Name            30 non-null object
Token Set Ratio Score           30 non-null int64
Token Sort Ratio ID             30 non-null int64
Token Sort Ratio Name           30 non-null object
Token Sort Ratio Score          30 non-null int64
Unicode Quick Ratio ID          30 non-null int64
Unicode Quick Ratio Name        30 non-null object
Unicode Quick Ratio Score       30 non-null int64
Unicode Weighted Ratio ID       30 non-null int64
Unicode Weighted Ratio Name     30 non-null object
Unicode Weighted Ratio Score    30 non-null int64
Unmatched_name                  30 non-null object
Weighted Ratio ID               30 non-null int64
Weighted Ratio Name             30 non-null object
Weighted Ratio Score            30 non-null int64
dtypes: int64(18), object(10)
memory usage: 6.6+ KB
In [66]:
columns_to_keep = ['Unmatched_name', 'Best_match_id']

auxiliary_table = merge_table[columns_to_keep]
In [67]:
auxiliary_table.head()
Out[67]:
Unmatched_name Best_match_id
0 Bayern Munich 9823
1 Bielefeld 9912
2 Cottbus 8398
3 Ein Frankfurt 9810
4 FC Koln 8722
In [68]:
bundesliga_stats.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 2448 entries, 71798 to 24887
Data columns (total 35 columns):
Season        2448 non-null object
Country       2448 non-null object
League        2448 non-null object
Div           2448 non-null object
Date          2448 non-null object
HomeTeam      2448 non-null object
AwayTeam      2448 non-null object
FTHG          2448 non-null int64
FTAG          2448 non-null int64
FTR           2448 non-null object
HTHG          2448 non-null int64
HTAG          2448 non-null int64
HTR           2448 non-null object
Attendance    0 non-null float64
Referee       0 non-null object
HS            2448 non-null float64
AS            2448 non-null float64
HST           2448 non-null float64
AST           2448 non-null float64
HHW           0 non-null float64
AHW           0 non-null float64
HC            2448 non-null float64
AC            2448 non-null float64
HF            2448 non-null float64
AF            2448 non-null float64
HFKC          0 non-null float64
AFKC          0 non-null float64
HO            0 non-null float64
AO            0 non-null float64
HY            2448 non-null float64
AY            2448 non-null float64
HR            2448 non-null float64
AR            2448 non-null float64
HBP           0 non-null float64
ABP           0 non-null float64
dtypes: float64(21), int64(4), object(10)
memory usage: 688.5+ KB
In [69]:
bundesliga_stats = bundesliga_stats.reset_index(drop=True)
In [70]:
bundesliga.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 2448 entries, 7808 to 10255
Columns: 130 entries, id to team_short_name.1
dtypes: datetime64[ns](1), float64(98), int64(16), object(15)
memory usage: 2.4+ MB
In [71]:
bundesliga_stats.head()
Out[71]:
Season Country League Div Date HomeTeam AwayTeam FTHG FTAG FTR HTHG HTAG HTR Attendance Referee HS AS HST AST HHW AHW HC AC HF AF HFKC AFKC HO AO HY AY HR AR HBP ABP
0 2008/2009 Germany Bundesliga 1 D1 2009-05-23 00:00:00 Bayern Munich Stuttgart 2 1 H 1 0 H NaN NaN 14.0 9.0 4.0 5.0 NaN NaN 5.0 4.0 19.0 21.0 NaN NaN NaN NaN 1.0 1.0 0.0 0.0 NaN NaN
1 2008/2009 Germany Bundesliga 1 D1 2009-05-23 00:00:00 Bielefeld Hannover 2 2 D 1 0 H NaN NaN 17.0 17.0 6.0 8.0 NaN NaN 10.0 7.0 11.0 16.0 NaN NaN NaN NaN 2.0 0.0 0.0 0.0 NaN NaN
2 2008/2009 Germany Bundesliga 1 D1 2009-05-23 00:00:00 Cottbus Leverkusen 3 0 H 0 0 D NaN NaN 11.0 18.0 6.0 9.0 NaN NaN 3.0 8.0 18.0 13.0 NaN NaN NaN NaN 1.0 3.0 0.0 1.0 NaN NaN
3 2008/2009 Germany Bundesliga 1 D1 2009-05-23 00:00:00 Ein Frankfurt Hamburg 2 3 A 0 1 A NaN NaN 9.0 15.0 4.0 5.0 NaN NaN 6.0 8.0 20.0 25.0 NaN NaN NaN NaN 4.0 5.0 0.0 0.0 NaN NaN
4 2008/2009 Germany Bundesliga 1 D1 2009-05-23 00:00:00 FC Koln Bochum 1 1 D 1 1 D NaN NaN 20.0 15.0 8.0 4.0 NaN NaN 7.0 5.0 18.0 10.0 NaN NaN NaN NaN 1.0 1.0 0.0 0.0 NaN NaN
In [72]:
bundesliga_stats = pd.merge(bundesliga_stats,
                      auxiliary_table[['Best_match_id']],
                      on='HomeTeam')
---------------------------------------------------------------------------
KeyError                                  Traceback (most recent call last)
<ipython-input-72-c658f3fad357> in <module>()
      1 bundesliga_stats = pd.merge(bundesliga_stats,
      2                       auxiliary_table[['Best_match_id']],
----> 3                       on='HomeTeam')

/anaconda3/lib/python3.6/site-packages/pandas/core/reshape/merge.py in merge(left, right, how, on, left_on, right_on, left_index, right_index, sort, suffixes, copy, indicator, validate)
     58                          right_index=right_index, sort=sort, suffixes=suffixes,
     59                          copy=copy, indicator=indicator,
---> 60                          validate=validate)
     61     return op.get_result()
     62 

/anaconda3/lib/python3.6/site-packages/pandas/core/reshape/merge.py in __init__(self, left, right, how, on, left_on, right_on, axis, left_index, right_index, sort, suffixes, copy, indicator, validate)
    548         (self.left_join_keys,
    549          self.right_join_keys,
--> 550          self.join_names) = self._get_merge_keys()
    551 
    552         # validate the merge keys dtypes. We may need to coerce

/anaconda3/lib/python3.6/site-packages/pandas/core/reshape/merge.py in _get_merge_keys(self)
    854                             right_keys.append(
    855                                 right._get_label_or_level_values(
--> 856                                     rk, stacklevel=stacklevel))
    857                         else:
    858                             # work-around for merge_asof(right_index=True)

/anaconda3/lib/python3.6/site-packages/pandas/core/generic.py in _get_label_or_level_values(self, key, axis, stacklevel)
   1377             values = self.axes[axis].get_level_values(key)._values
   1378         else:
-> 1379             raise KeyError(key)
   1380 
   1381         # Check for duplicates

KeyError: 'HomeTeam'
In [73]:
bundesliga_stats = pd.merge(bundesliga_stats, auxiliary_table[['Best_match_id']], left_on='HomeTeam', right_on='Unmatched_name', how='left')
---------------------------------------------------------------------------
KeyError                                  Traceback (most recent call last)
<ipython-input-73-1d03d40b916f> in <module>()
----> 1 bundesliga_stats = pd.merge(bundesliga_stats, auxiliary_table[['Best_match_id']], left_on='HomeTeam', right_on='Unmatched_name', how='left')

/anaconda3/lib/python3.6/site-packages/pandas/core/reshape/merge.py in merge(left, right, how, on, left_on, right_on, left_index, right_index, sort, suffixes, copy, indicator, validate)
     58                          right_index=right_index, sort=sort, suffixes=suffixes,
     59                          copy=copy, indicator=indicator,
---> 60                          validate=validate)
     61     return op.get_result()
     62 

/anaconda3/lib/python3.6/site-packages/pandas/core/reshape/merge.py in __init__(self, left, right, how, on, left_on, right_on, axis, left_index, right_index, sort, suffixes, copy, indicator, validate)
    548         (self.left_join_keys,
    549          self.right_join_keys,
--> 550          self.join_names) = self._get_merge_keys()
    551 
    552         # validate the merge keys dtypes. We may need to coerce

/anaconda3/lib/python3.6/site-packages/pandas/core/reshape/merge.py in _get_merge_keys(self)
    854                             right_keys.append(
    855                                 right._get_label_or_level_values(
--> 856                                     rk, stacklevel=stacklevel))
    857                         else:
    858                             # work-around for merge_asof(right_index=True)

/anaconda3/lib/python3.6/site-packages/pandas/core/generic.py in _get_label_or_level_values(self, key, axis, stacklevel)
   1377             values = self.axes[axis].get_level_values(key)._values
   1378         else:
-> 1379             raise KeyError(key)
   1380 
   1381         # Check for duplicates

KeyError: 'Unmatched_name'
In [74]:
auxiliary_table.rename(columns={'Unmatched_name': 'HomeTeam'}, inplace=True)

auxiliary_table.head()
/anaconda3/lib/python3.6/site-packages/pandas/core/frame.py:3778: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/indexing.html#indexing-view-versus-copy
  return super(DataFrame, self).rename(**kwargs)
Out[74]:
HomeTeam Best_match_id
0 Bayern Munich 9823
1 Bielefeld 9912
2 Cottbus 8398
3 Ein Frankfurt 9810
4 FC Koln 8722
In [75]:
new_df = pd.merge(bundesliga_stats, auxiliary_table, on = 'HomeTeam')
In [76]:
new_df.tail()
Out[76]:
Season Country League Div Date HomeTeam AwayTeam FTHG FTAG FTR HTHG HTAG HTR Attendance Referee HS AS HST AST HHW AHW HC AC HF AF HFKC AFKC HO AO HY AY HR AR HBP ABP Best_match_id
2443 2015/2016 Germany Bundesliga 1 D1 2015-10-24 00:00:00 Ingolstadt Hertha 0 1 A 0 1 A NaN NaN 18.0 5.0 3.0 1.0 NaN NaN 8.0 2.0 12.0 12.0 NaN NaN NaN NaN 2.0 3.0 0.0 0.0 NaN NaN 8234
2444 2015/2016 Germany Bundesliga 1 D1 2015-10-03 00:00:00 Ingolstadt Ein Frankfurt 2 0 H 0 0 D NaN NaN 14.0 12.0 4.0 2.0 NaN NaN 4.0 3.0 11.0 11.0 NaN NaN NaN NaN 1.0 2.0 0.0 0.0 NaN NaN 8234
2445 2015/2016 Germany Bundesliga 1 D1 2015-09-22 00:00:00 Ingolstadt Hamburg 0 1 A 0 0 D NaN NaN 12.0 8.0 1.0 3.0 NaN NaN 8.0 5.0 15.0 16.0 NaN NaN NaN NaN 2.0 1.0 0.0 0.0 NaN NaN 8234
2446 2015/2016 Germany Bundesliga 1 D1 2015-09-12 00:00:00 Ingolstadt Wolfsburg 0 0 D 0 0 D NaN NaN 5.0 17.0 1.0 3.0 NaN NaN 2.0 5.0 10.0 15.0 NaN NaN NaN NaN 2.0 3.0 0.0 0.0 NaN NaN 8234
2447 2015/2016 Germany Bundesliga 1 D1 2015-08-23 00:00:00 Ingolstadt Dortmund 0 4 A 0 0 D NaN NaN 3.0 18.0 2.0 8.0 NaN NaN 1.0 4.0 18.0 16.0 NaN NaN NaN NaN 2.0 3.0 0.0 0.0 NaN NaN 8234
In [77]:
auxiliary_table.rename(columns={'HomeTeam': 'AwayTeam'}, inplace=True)

auxiliary_table.head()
/anaconda3/lib/python3.6/site-packages/pandas/core/frame.py:3778: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/indexing.html#indexing-view-versus-copy
  return super(DataFrame, self).rename(**kwargs)
Out[77]:
AwayTeam Best_match_id
0 Bayern Munich 9823
1 Bielefeld 9912
2 Cottbus 8398
3 Ein Frankfurt 9810
4 FC Koln 8722
In [78]:
new_df.rename(columns={'Best_match_id': 'home_team_api_id'}, inplace=True)

new_df.head()
Out[78]:
Season Country League Div Date HomeTeam AwayTeam FTHG FTAG FTR HTHG HTAG HTR Attendance Referee HS AS HST AST HHW AHW HC AC HF AF HFKC AFKC HO AO HY AY HR AR HBP ABP home_team_api_id
0 2008/2009 Germany Bundesliga 1 D1 2009-05-23 00:00:00 Bayern Munich Stuttgart 2 1 H 1 0 H NaN NaN 14.0 9.0 4.0 5.0 NaN NaN 5.0 4.0 19.0 21.0 NaN NaN NaN NaN 1.0 1.0 0.0 0.0 NaN NaN 9823
1 2008/2009 Germany Bundesliga 1 D1 2009-05-12 00:00:00 Bayern Munich Leverkusen 3 0 H 0 0 D NaN NaN 19.0 9.0 9.0 3.0 NaN NaN 9.0 3.0 17.0 15.0 NaN NaN NaN NaN 1.0 5.0 0.0 0.0 NaN NaN 9823
2 2008/2009 Germany Bundesliga 1 D1 2009-05-02 00:00:00 Bayern Munich M'gladbach 2 1 H 2 1 H NaN NaN 15.0 7.0 5.0 2.0 NaN NaN 6.0 2.0 15.0 19.0 NaN NaN NaN NaN 0.0 3.0 0.0 0.0 NaN NaN 9823
3 2008/2009 Germany Bundesliga 1 D1 2009-04-25 00:00:00 Bayern Munich Schalke 04 0 1 A 0 1 A NaN NaN 22.0 8.0 6.0 4.0 NaN NaN 15.0 5.0 16.0 15.0 NaN NaN NaN NaN 2.0 3.0 1.0 1.0 NaN NaN 9823
4 2008/2009 Germany Bundesliga 1 D1 2009-04-11 00:00:00 Bayern Munich Ein Frankfurt 4 0 H 3 0 H NaN NaN 15.0 7.0 6.0 1.0 NaN NaN 5.0 3.0 18.0 16.0 NaN NaN NaN NaN 1.0 1.0 0.0 0.0 NaN NaN 9823
In [79]:
new_df = pd.merge(new_df, auxiliary_table, on = 'AwayTeam')
In [80]:
new_df.head()
Out[80]:
Season Country League Div Date HomeTeam AwayTeam FTHG FTAG FTR HTHG HTAG HTR Attendance Referee HS AS HST AST HHW AHW HC AC HF AF HFKC AFKC HO AO HY AY HR AR HBP ABP home_team_api_id Best_match_id
0 2008/2009 Germany Bundesliga 1 D1 2009-05-23 00:00:00 Bayern Munich Stuttgart 2 1 H 1 0 H NaN NaN 14.0 9.0 4.0 5.0 NaN NaN 5.0 4.0 19.0 21.0 NaN NaN NaN NaN 1.0 1.0 0.0 0.0 NaN NaN 9823 10269
1 2009/2010 Germany Bundesliga 1 D1 2010-03-27 00:00:00 Bayern Munich Stuttgart 1 2 A 1 1 D NaN NaN 9.0 15.0 3.0 8.0 NaN NaN 5.0 2.0 16.0 23.0 NaN NaN NaN NaN 1.0 1.0 0.0 0.0 NaN NaN 9823 10269
2 2010/2011 Germany Bundesliga 1 D1 2011-05-14 00:00:00 Bayern Munich Stuttgart 2 1 H 1 1 D NaN NaN 10.0 10.0 5.0 5.0 NaN NaN 6.0 4.0 17.0 21.0 NaN NaN NaN NaN 2.0 2.0 0.0 0.0 NaN NaN 9823 10269
3 2011/2012 Germany Bundesliga 1 D1 2012-04-28 00:00:00 Bayern Munich Stuttgart 2 0 H 1 0 H NaN NaN 15.0 9.0 6.0 5.0 NaN NaN 6.0 6.0 12.0 14.0 NaN NaN NaN NaN 1.0 1.0 0.0 0.0 NaN NaN 9823 10269
4 2012/2013 Germany Bundesliga 1 D1 2012-09-02 00:00:00 Bayern Munich Stuttgart 6 1 H 3 1 H NaN NaN 16.0 7.0 13.0 4.0 NaN NaN 5.0 3.0 13.0 8.0 NaN NaN NaN NaN 1.0 1.0 0.0 1.0 NaN NaN 9823 10269
In [81]:
new_df.rename(columns={'Best_match_id': 'away_team_api_id'}, inplace=True)
In [82]:
new_df.rename(columns={'Date': 'date'}, inplace=True)
In [83]:
all_columns = pd.Series(list(bundesliga) + list(new_df))
all_columns[all_columns.duplicated()]
Out[83]:
134                date
165    home_team_api_id
166    away_team_api_id
dtype: object
In [84]:
#Column 'date' is currently a string, convert to datetime format
new_df['date'] = pd.to_datetime(new_df['date'])
In [85]:
bundesliga.info(verbose=True)
<class 'pandas.core.frame.DataFrame'>
Int64Index: 2448 entries, 7808 to 10255
Data columns (total 130 columns):
id                    int64
country_id            int64
league_id             int64
season                object
stage                 int64
date                  datetime64[ns]
match_api_id          int64
home_team_api_id      int64
away_team_api_id      int64
home_team_goal        int64
away_team_goal        int64
home_player_X1        float64
home_player_X2        float64
home_player_X3        float64
home_player_X4        float64
home_player_X5        float64
home_player_X6        float64
home_player_X7        float64
home_player_X8        float64
home_player_X9        float64
home_player_X10       float64
home_player_X11       float64
away_player_X1        float64
away_player_X2        float64
away_player_X3        float64
away_player_X4        float64
away_player_X5        float64
away_player_X6        float64
away_player_X7        float64
away_player_X8        float64
away_player_X9        float64
away_player_X10       float64
away_player_X11       float64
home_player_Y1        float64
home_player_Y2        float64
home_player_Y3        float64
home_player_Y4        float64
home_player_Y5        float64
home_player_Y6        float64
home_player_Y7        float64
home_player_Y8        float64
home_player_Y9        float64
home_player_Y10       float64
home_player_Y11       float64
away_player_Y1        float64
away_player_Y2        float64
away_player_Y3        float64
away_player_Y4        float64
away_player_Y5        float64
away_player_Y6        float64
away_player_Y7        float64
away_player_Y8        float64
away_player_Y9        float64
away_player_Y10       float64
away_player_Y11       float64
home_player_1         float64
home_player_2         float64
home_player_3         float64
home_player_4         float64
home_player_5         float64
home_player_6         float64
home_player_7         float64
home_player_8         float64
home_player_9         float64
home_player_10        float64
home_player_11        float64
away_player_1         float64
away_player_2         float64
away_player_3         float64
away_player_4         float64
away_player_5         float64
away_player_6         float64
away_player_7         float64
away_player_8         float64
away_player_9         float64
away_player_10        float64
away_player_11        float64
goal                  object
shoton                object
shotoff               object
foulcommit            object
card                  object
cross                 object
corner                object
possession            object
B365H                 float64
B365D                 float64
B365A                 float64
BWH                   float64
BWD                   float64
BWA                   float64
IWH                   float64
IWD                   float64
IWA                   float64
LBH                   float64
LBD                   float64
LBA                   float64
PSH                   float64
PSD                   float64
PSA                   float64
WHH                   float64
WHD                   float64
WHA                   float64
SJH                   float64
SJD                   float64
SJA                   float64
VCH                   float64
VCD                   float64
VCA                   float64
GBH                   float64
GBD                   float64
GBA                   float64
BSH                   float64
BSD                   float64
BSA                   float64
id.1                  int64
country_id.1          int64
name                  object
id.2                  int64
name.1                object
id.3                  int64
team_api_id           int64
team_fifa_api_id      float64
team_long_name        object
team_short_name       object
id.4                  int64
team_api_id.1         int64
team_fifa_api_id.1    float64
team_long_name.1      object
team_short_name.1     object
dtypes: datetime64[ns](1), float64(98), int64(16), object(15)
memory usage: 2.4+ MB
In [86]:
new_df.info(verbose=True)
<class 'pandas.core.frame.DataFrame'>
Int64Index: 2448 entries, 0 to 2447
Data columns (total 37 columns):
Season              2448 non-null object
Country             2448 non-null object
League              2448 non-null object
Div                 2448 non-null object
date                2448 non-null datetime64[ns]
HomeTeam            2448 non-null object
AwayTeam            2448 non-null object
FTHG                2448 non-null int64
FTAG                2448 non-null int64
FTR                 2448 non-null object
HTHG                2448 non-null int64
HTAG                2448 non-null int64
HTR                 2448 non-null object
Attendance          0 non-null float64
Referee             0 non-null object
HS                  2448 non-null float64
AS                  2448 non-null float64
HST                 2448 non-null float64
AST                 2448 non-null float64
HHW                 0 non-null float64
AHW                 0 non-null float64
HC                  2448 non-null float64
AC                  2448 non-null float64
HF                  2448 non-null float64
AF                  2448 non-null float64
HFKC                0 non-null float64
AFKC                0 non-null float64
HO                  0 non-null float64
AO                  0 non-null float64
HY                  2448 non-null float64
AY                  2448 non-null float64
HR                  2448 non-null float64
AR                  2448 non-null float64
HBP                 0 non-null float64
ABP                 0 non-null float64
home_team_api_id    2448 non-null int64
away_team_api_id    2448 non-null int64
dtypes: datetime64[ns](1), float64(21), int64(6), object(9)
memory usage: 726.8+ KB
In [87]:
bundesliga.head()
Out[87]:
id country_id league_id season stage date match_api_id home_team_api_id away_team_api_id home_team_goal away_team_goal home_player_X1 home_player_X2 home_player_X3 home_player_X4 home_player_X5 home_player_X6 home_player_X7 home_player_X8 home_player_X9 home_player_X10 home_player_X11 away_player_X1 away_player_X2 away_player_X3 away_player_X4 away_player_X5 away_player_X6 away_player_X7 away_player_X8 away_player_X9 away_player_X10 away_player_X11 home_player_Y1 home_player_Y2 home_player_Y3 home_player_Y4 home_player_Y5 home_player_Y6 home_player_Y7 home_player_Y8 home_player_Y9 home_player_Y10 home_player_Y11 away_player_Y1 away_player_Y2 away_player_Y3 away_player_Y4 away_player_Y5 away_player_Y6 away_player_Y7 away_player_Y8 away_player_Y9 away_player_Y10 away_player_Y11 home_player_1 home_player_2 home_player_3 home_player_4 home_player_5 home_player_6 home_player_7 home_player_8 home_player_9 home_player_10 home_player_11 away_player_1 away_player_2 away_player_3 away_player_4 away_player_5 away_player_6 away_player_7 away_player_8 away_player_9 away_player_10 away_player_11 goal shoton shotoff foulcommit card cross corner possession B365H B365D B365A BWH BWD BWA IWH IWD IWA LBH LBD LBA PSH PSD PSA WHH WHD WHA SJH SJD SJA VCH VCD VCA GBH GBD GBA BSH BSD BSA id.1 country_id.1 name id.2 name.1 id.3 team_api_id team_fifa_api_id team_long_name team_short_name id.4 team_api_id.1 team_fifa_api_id.1 team_long_name.1 team_short_name.1
7808 7809 7809 7809 2008/2009 1 2008-08-15 499317 9823 9790 2 2 1.0 2.0 4.0 6.0 8.0 5.0 4.0 6.0 5.0 4.0 6.0 1.0 2.0 4.0 6.0 8.0 3.0 5.0 7.0 3.0 5.0 7.0 1.0 3.0 3.0 3.0 3.0 5.0 7.0 7.0 9.0 11.0 11.0 1.0 3.0 3.0 3.0 3.0 7.0 7.0 7.0 10.0 10.0 10.0 27284.0 35988.0 39774.0 33085.0 30894.0 38244.0 30872.0 38843.0 95078.0 30638.0 32118.0 25524.0 36183.0 27293.0 37787.0 37156.0 30749.0 30598.0 39106.0 38216.0 33101.0 30764.0 <goal><value><comment>n</comment><stats><goals... <shoton /> <shotoff /> <foulcommit /> <card><value><comment>y</comment><stats><ycard... <cross /> <corner /> <possession /> 1.57 3.8 6.0 1.55 3.70 5.45 1.6 3.6 4.8 1.53 3.50 5.50 NaN NaN NaN 1.53 3.5 5.5 1.62 3.40 5.50 1.55 3.50 5.50 1.60 3.60 5.75 1.53 3.75 5.50 7809 7809 Germany 1. Bundesliga 7809 Germany 15617 9823 21.0 FC Bayern Munich BMU 15618 9790 28.0 Hamburger SV HAM
7809 7810 7809 7809 2008/2009 1 2008-08-16 499318 8178 9789 2 3 1.0 2.0 4.0 6.0 8.0 5.0 3.0 5.0 7.0 4.0 6.0 1.0 2.0 4.0 6.0 8.0 2.0 4.0 6.0 8.0 4.0 6.0 1.0 3.0 3.0 3.0 3.0 5.0 7.0 7.0 7.0 10.0 10.0 1.0 3.0 3.0 3.0 3.0 7.0 7.0 7.0 7.0 10.0 10.0 36147.0 27427.0 27492.0 128037.0 28081.0 27429.0 34681.0 49939.0 30937.0 27556.0 31199.0 27358.0 79737.0 71399.0 36388.0 27360.0 43319.0 36132.0 30707.0 27363.0 31718.0 27514.0 <goal><value><comment>n</comment><stats><goals... <shoton /> <shotoff /> <foulcommit /> <card><value><comment>y</comment><stats><ycard... <cross /> <corner /> <possession /> 2.05 3.3 3.6 2.05 3.25 3.30 2.0 3.3 3.2 1.91 3.25 3.40 NaN NaN NaN 1.95 3.1 3.5 1.91 3.25 3.75 2.00 3.25 3.25 2.05 3.30 3.50 2.00 3.25 3.40 7809 7809 Germany 1. Bundesliga 7809 Germany 15619 8178 32.0 Bayer 04 Leverkusen LEV 15620 9789 22.0 Borussia Dortmund DOR
7810 7811 7809 7809 2008/2009 1 2008-08-16 499319 10189 9904 3 0 1.0 2.0 4.0 6.0 8.0 3.0 5.0 7.0 4.0 6.0 5.0 1.0 2.0 4.0 6.0 8.0 3.0 5.0 7.0 5.0 4.0 6.0 1.0 3.0 3.0 3.0 3.0 6.0 6.0 6.0 8.0 8.0 11.0 1.0 3.0 3.0 3.0 3.0 5.0 5.0 5.0 8.0 10.0 10.0 37322.0 27461.0 68253.0 27301.0 30250.0 30251.0 27483.0 27307.0 35997.0 25773.0 30249.0 27341.0 30811.0 27286.0 NaN 25483.0 27351.0 27349.0 39045.0 34400.0 30854.0 39840.0 <goal><value><comment>n</comment><stats><goals... <shoton /> <shotoff /> <foulcommit /> <card><value><comment>y</comment><stats><ycard... <cross /> <corner /> <possession /> 1.57 3.8 6.0 1.60 3.65 5.00 1.6 3.6 4.8 1.57 3.50 5.00 NaN NaN NaN 1.60 3.4 4.8 1.62 3.40 5.50 1.50 3.60 6.00 1.60 3.60 5.60 1.57 3.75 5.00 7809 7809 Germany 1. Bundesliga 7809 Germany 15621 10189 34.0 FC Schalke 04 S04 15622 9904 485.0 Hannover 96 HAN
7811 7812 7809 7809 2008/2009 1 2008-08-16 499320 8721 8722 2 1 1.0 2.0 4.0 6.0 8.0 5.0 3.0 5.0 7.0 4.0 6.0 1.0 2.0 4.0 6.0 8.0 5.0 4.0 6.0 5.0 4.0 6.0 1.0 3.0 3.0 3.0 3.0 5.0 7.0 7.0 7.0 10.0 10.0 1.0 3.0 3.0 3.0 3.0 5.0 7.0 7.0 9.0 11.0 11.0 30820.0 30906.0 30914.0 30902.0 37317.0 19511.0 30530.0 27324.0 38606.0 39902.0 27339.0 26173.0 42184.0 97491.0 38215.0 23628.0 30789.0 36395.0 36031.0 33348.0 38848.0 39805.0 <goal><value><comment>n</comment><stats><goals... <shoton /> <shotoff /> <foulcommit /> <card><value><comment>y</comment><stats><ycard... <cross /> <corner /> <possession /> 1.62 3.6 6.0 1.55 3.75 5.40 1.6 3.6 4.8 1.57 3.50 5.00 NaN NaN NaN 1.57 3.5 5.0 1.53 3.50 6.00 1.60 3.40 5.00 1.63 3.60 5.50 1.57 3.75 5.00 7809 7809 Germany 1. Bundesliga 7809 Germany 15623 8721 175.0 VfL Wolfsburg WOL 15624 8722 31.0 1. FC Köln FCK
7812 7813 7809 7809 2008/2009 1 2008-08-17 499321 9810 8177 0 2 1.0 2.0 4.0 6.0 8.0 4.0 6.0 2.0 8.0 4.0 6.0 1.0 2.0 4.0 6.0 8.0 2.0 4.0 6.0 8.0 5.0 5.0 1.0 3.0 3.0 3.0 3.0 5.0 5.0 7.0 7.0 10.0 10.0 1.0 3.0 3.0 3.0 3.0 7.0 7.0 7.0 7.0 9.0 11.0 27467.0 27472.0 26383.0 27475.0 30912.0 27471.0 38863.0 41923.0 41034.0 37760.0 27481.0 24104.0 25815.0 45352.0 30693.0 37332.0 36130.0 13518.0 16300.0 31244.0 25819.0 36788.0 <goal><value><comment>n</comment><stats><goals... <shoton /> <shotoff /> <foulcommit /> <card><value><comment>y</comment><stats><ycard... <cross /> <corner /> <possession /> 2.35 3.3 3.0 2.35 3.15 2.80 2.2 3.3 2.8 2.20 3.25 2.75 NaN NaN NaN 2.20 3.2 2.8 2.10 3.20 3.25 2.20 3.25 2.90 2.35 3.15 3.00 2.25 3.25 2.88 7809 7809 Germany 1. Bundesliga 7809 Germany 15625 9810 1824.0 Eintracht Frankfurt EFR 15626 8177 166.0 Hertha BSC Berlin HBE
In [88]:
complete_bundesliga = pd.merge(bundesliga, new_df, on = ['date', 'home_team_api_id', 'away_team_api_id'])
In [89]:
complete_bundesliga.info(verbose = True, null_counts=True )
<class 'pandas.core.frame.DataFrame'>
Int64Index: 2448 entries, 0 to 2447
Data columns (total 164 columns):
id                    2448 non-null int64
country_id            2448 non-null int64
league_id             2448 non-null int64
season                2448 non-null object
stage                 2448 non-null int64
date                  2448 non-null datetime64[ns]
match_api_id          2448 non-null int64
home_team_api_id      2448 non-null int64
away_team_api_id      2448 non-null int64
home_team_goal        2448 non-null int64
away_team_goal        2448 non-null int64
home_player_X1        2448 non-null float64
home_player_X2        2448 non-null float64
home_player_X3        2448 non-null float64
home_player_X4        2448 non-null float64
home_player_X5        2448 non-null float64
home_player_X6        2448 non-null float64
home_player_X7        2448 non-null float64
home_player_X8        2448 non-null float64
home_player_X9        2448 non-null float64
home_player_X10       2448 non-null float64
home_player_X11       2448 non-null float64
away_player_X1        2448 non-null float64
away_player_X2        2448 non-null float64
away_player_X3        2448 non-null float64
away_player_X4        2448 non-null float64
away_player_X5        2448 non-null float64
away_player_X6        2448 non-null float64
away_player_X7        2448 non-null float64
away_player_X8        2448 non-null float64
away_player_X9        2448 non-null float64
away_player_X10       2448 non-null float64
away_player_X11       2446 non-null float64
home_player_Y1        2448 non-null float64
home_player_Y2        2448 non-null float64
home_player_Y3        2448 non-null float64
home_player_Y4        2448 non-null float64
home_player_Y5        2448 non-null float64
home_player_Y6        2448 non-null float64
home_player_Y7        2448 non-null float64
home_player_Y8        2448 non-null float64
home_player_Y9        2448 non-null float64
home_player_Y10       2448 non-null float64
home_player_Y11       2448 non-null float64
away_player_Y1        2448 non-null float64
away_player_Y2        2448 non-null float64
away_player_Y3        2448 non-null float64
away_player_Y4        2448 non-null float64
away_player_Y5        2448 non-null float64
away_player_Y6        2448 non-null float64
away_player_Y7        2448 non-null float64
away_player_Y8        2448 non-null float64
away_player_Y9        2448 non-null float64
away_player_Y10       2448 non-null float64
away_player_Y11       2446 non-null float64
home_player_1         2436 non-null float64
home_player_2         2446 non-null float64
home_player_3         2441 non-null float64
home_player_4         2445 non-null float64
home_player_5         2445 non-null float64
home_player_6         2443 non-null float64
home_player_7         2446 non-null float64
home_player_8         2445 non-null float64
home_player_9         2446 non-null float64
home_player_10        2444 non-null float64
home_player_11        2444 non-null float64
away_player_1         2436 non-null float64
away_player_2         2445 non-null float64
away_player_3         2445 non-null float64
away_player_4         2445 non-null float64
away_player_5         2444 non-null float64
away_player_6         2445 non-null float64
away_player_7         2444 non-null float64
away_player_8         2442 non-null float64
away_player_9         2446 non-null float64
away_player_10        2447 non-null float64
away_player_11        2446 non-null float64
goal                  2448 non-null object
shoton                2448 non-null object
shotoff               2448 non-null object
foulcommit            2448 non-null object
card                  2448 non-null object
cross                 2448 non-null object
corner                2448 non-null object
possession            2448 non-null object
B365H                 2447 non-null float64
B365D                 2447 non-null float64
B365A                 2447 non-null float64
BWH                   2447 non-null float64
BWD                   2447 non-null float64
BWA                   2447 non-null float64
IWH                   2442 non-null float64
IWD                   2442 non-null float64
IWA                   2442 non-null float64
LBH                   2447 non-null float64
LBD                   2447 non-null float64
LBA                   2447 non-null float64
PSH                   1223 non-null float64
PSD                   1223 non-null float64
PSA                   1223 non-null float64
WHH                   2447 non-null float64
WHD                   2447 non-null float64
WHA                   2447 non-null float64
SJH                   1860 non-null float64
SJD                   1860 non-null float64
SJA                   1860 non-null float64
VCH                   2447 non-null float64
VCD                   2447 non-null float64
VCA                   2447 non-null float64
GBH                   1528 non-null float64
GBD                   1528 non-null float64
GBA                   1528 non-null float64
BSH                   1528 non-null float64
BSD                   1528 non-null float64
BSA                   1528 non-null float64
id.1                  2448 non-null int64
country_id.1          2448 non-null int64
name                  2448 non-null object
id.2                  2448 non-null int64
name.1                2448 non-null object
id.3                  2448 non-null int64
team_api_id           2448 non-null int64
team_fifa_api_id      2448 non-null float64
team_long_name        2448 non-null object
team_short_name       2448 non-null object
id.4                  2448 non-null int64
team_api_id.1         2448 non-null int64
team_fifa_api_id.1    2448 non-null float64
team_long_name.1      2448 non-null object
team_short_name.1     2448 non-null object
Season                2448 non-null object
Country               2448 non-null object
League                2448 non-null object
Div                   2448 non-null object
HomeTeam              2448 non-null object
AwayTeam              2448 non-null object
FTHG                  2448 non-null int64
FTAG                  2448 non-null int64
FTR                   2448 non-null object
HTHG                  2448 non-null int64
HTAG                  2448 non-null int64
HTR                   2448 non-null object
Attendance            0 non-null float64
Referee               0 non-null object
HS                    2448 non-null float64
AS                    2448 non-null float64
HST                   2448 non-null float64
AST                   2448 non-null float64
HHW                   0 non-null float64
AHW                   0 non-null float64
HC                    2448 non-null float64
AC                    2448 non-null float64
HF                    2448 non-null float64
AF                    2448 non-null float64
HFKC                  0 non-null float64
AFKC                  0 non-null float64
HO                    0 non-null float64
AO                    0 non-null float64
HY                    2448 non-null float64
AY                    2448 non-null float64
HR                    2448 non-null float64
AR                    2448 non-null float64
HBP                   0 non-null float64
ABP                   0 non-null float64
dtypes: datetime64[ns](1), float64(119), int64(20), object(24)
memory usage: 3.1+ MB
In [90]:
plt.figure(figsize=(15,15))
sns.heatmap(complete_bundesliga.isnull(),yticklabels=False,cbar=False,cmap='viridis');
In [91]:
complete_bundesliga.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 2448 entries, 0 to 2447
Columns: 164 entries, id to ABP
dtypes: datetime64[ns](1), float64(119), int64(20), object(24)
memory usage: 3.1+ MB

Testing hypothesis to see whether imputation of missing football player ratings

We will test to see whether it is reasonable to imputate the overall rating of a player based on the team's average (for the rating of the known players).

For this, we need a small mean of the standard deviation for the values contained in the home_team and away_team

Steps to take:

  1. Only have clean matches
  2. Perform a join with the most relevant rating based on the nearest date to the match date
  3. Calculate the mean rating for both home_team and away_team.
  4. Calculate the s.d. for both home_team and away_team.
  5. Run the describe function.

Step 0

In [99]:
bundesliga_clean = complete_bundesliga.dropna(subset=players)
In [100]:
bundesliga_clean.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 2376 entries, 0 to 2447
Columns: 164 entries, id to ABP
dtypes: datetime64[ns](1), float64(119), int64(20), object(24)
memory usage: 3.0+ MB

Step 1

In [101]:
players_ratings_clean.info(verbose=True)
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 183978 entries, 0 to 183977
Data columns (total 49 columns):
id                      183978 non-null int64
player_fifa_api_id      183978 non-null int64
player_api_id           183978 non-null int64
date                    183978 non-null object
overall_rating          183142 non-null float64
potential               183142 non-null float64
preferred_foot          183142 non-null object
attacking_work_rate     180748 non-null object
defensive_work_rate     183142 non-null object
crossing                183142 non-null float64
finishing               183142 non-null float64
heading_accuracy        183142 non-null float64
short_passing           183142 non-null float64
volleys                 181265 non-null float64
dribbling               183142 non-null float64
curve                   181265 non-null float64
free_kick_accuracy      183142 non-null float64
long_passing            183142 non-null float64
ball_control            183142 non-null float64
acceleration            183142 non-null float64
sprint_speed            183142 non-null float64
agility                 181265 non-null float64
reactions               183142 non-null float64
balance                 181265 non-null float64
shot_power              183142 non-null float64
jumping                 181265 non-null float64
stamina                 183142 non-null float64
strength                183142 non-null float64
long_shots              183142 non-null float64
aggression              183142 non-null float64
interceptions           183142 non-null float64
positioning             183142 non-null float64
vision                  181265 non-null float64
penalties               183142 non-null float64
marking                 183142 non-null float64
standing_tackle         183142 non-null float64
sliding_tackle          181265 non-null float64
gk_diving               183142 non-null float64
gk_handling             183142 non-null float64
gk_kicking              183142 non-null float64
gk_positioning          183142 non-null float64
gk_reflexes             183142 non-null float64
id.1                    183978 non-null int64
player_api_id.1         183978 non-null int64
player_name             183978 non-null object
player_fifa_api_id.1    183978 non-null int64
birthday                183978 non-null object
height                  183978 non-null float64
weight                  183978 non-null int64
dtypes: float64(36), int64(7), object(6)
memory usage: 68.8+ MB
In [102]:
#Column 'date' is currently a string, convert to datetime format
players_ratings_clean['date'] = pd.to_datetime(players_ratings_clean['date'])
In [103]:
players_ratings_clean.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 183978 entries, 0 to 183977
Data columns (total 49 columns):
id                      183978 non-null int64
player_fifa_api_id      183978 non-null int64
player_api_id           183978 non-null int64
date                    183978 non-null datetime64[ns]
overall_rating          183142 non-null float64
potential               183142 non-null float64
preferred_foot          183142 non-null object
attacking_work_rate     180748 non-null object
defensive_work_rate     183142 non-null object
crossing                183142 non-null float64
finishing               183142 non-null float64
heading_accuracy        183142 non-null float64
short_passing           183142 non-null float64
volleys                 181265 non-null float64
dribbling               183142 non-null float64
curve                   181265 non-null float64
free_kick_accuracy      183142 non-null float64
long_passing            183142 non-null float64
ball_control            183142 non-null float64
acceleration            183142 non-null float64
sprint_speed            183142 non-null float64
agility                 181265 non-null float64
reactions               183142 non-null float64
balance                 181265 non-null float64
shot_power              183142 non-null float64
jumping                 181265 non-null float64
stamina                 183142 non-null float64
strength                183142 non-null float64
long_shots              183142 non-null float64
aggression              183142 non-null float64
interceptions           183142 non-null float64
positioning             183142 non-null float64
vision                  181265 non-null float64
penalties               183142 non-null float64
marking                 183142 non-null float64
standing_tackle         183142 non-null float64
sliding_tackle          181265 non-null float64
gk_diving               183142 non-null float64
gk_handling             183142 non-null float64
gk_kicking              183142 non-null float64
gk_positioning          183142 non-null float64
gk_reflexes             183142 non-null float64
id.1                    183978 non-null int64
player_api_id.1         183978 non-null int64
player_name             183978 non-null object
player_fifa_api_id.1    183978 non-null int64
birthday                183978 non-null object
height                  183978 non-null float64
weight                  183978 non-null int64
dtypes: datetime64[ns](1), float64(36), int64(7), object(5)
memory usage: 68.8+ MB
In [107]:
bundesliga_clean.sort_values(by=['date'], inplace=True)
bundesliga_clean.head()
/anaconda3/lib/python3.6/site-packages/ipykernel_launcher.py:1: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/indexing.html#indexing-view-versus-copy
  """Entry point for launching an IPython kernel.
Out[107]:
id country_id league_id season stage date match_api_id home_team_api_id away_team_api_id home_team_goal away_team_goal home_player_X1 home_player_X2 home_player_X3 home_player_X4 home_player_X5 home_player_X6 home_player_X7 home_player_X8 home_player_X9 home_player_X10 home_player_X11 away_player_X1 away_player_X2 away_player_X3 away_player_X4 away_player_X5 away_player_X6 away_player_X7 away_player_X8 away_player_X9 away_player_X10 away_player_X11 home_player_Y1 home_player_Y2 home_player_Y3 home_player_Y4 home_player_Y5 home_player_Y6 home_player_Y7 home_player_Y8 home_player_Y9 home_player_Y10 home_player_Y11 away_player_Y1 away_player_Y2 away_player_Y3 away_player_Y4 away_player_Y5 away_player_Y6 away_player_Y7 away_player_Y8 away_player_Y9 away_player_Y10 away_player_Y11 home_player_1 home_player_2 home_player_3 home_player_4 home_player_5 home_player_6 home_player_7 home_player_8 home_player_9 home_player_10 home_player_11 away_player_1 away_player_2 away_player_3 away_player_4 away_player_5 away_player_6 away_player_7 away_player_8 away_player_9 away_player_10 away_player_11 goal shoton shotoff foulcommit card cross corner possession B365H B365D B365A BWH BWD BWA IWH IWD IWA LBH LBD LBA PSH PSD PSA WHH WHD WHA SJH SJD SJA VCH VCD VCA GBH GBD GBA BSH BSD BSA id.1 country_id.1 name id.2 name.1 id.3 team_api_id team_fifa_api_id team_long_name team_short_name id.4 team_api_id.1 team_fifa_api_id.1 team_long_name.1 team_short_name.1 Season Country League Div HomeTeam AwayTeam FTHG FTAG FTR HTHG HTAG HTR Attendance Referee HS AS HST AST HHW AHW HC AC HF AF HFKC AFKC HO AO HY AY HR AR HBP ABP
0 7809 7809 7809 2008/2009 1 2008-08-15 499317 9823 9790 2 2 1.0 2.0 4.0 6.0 8.0 5.0 4.0 6.0 5.0 4.0 6.0 1.0 2.0 4.0 6.0 8.0 3.0 5.0 7.0 3.0 5.0 7.0 1.0 3.0 3.0 3.0 3.0 5.0 7.0 7.0 9.0 11.0 11.0 1.0 3.0 3.0 3.0 3.0 7.0 7.0 7.0 10.0 10.0 10.0 27284.0 35988.0 39774.0 33085.0 30894.0 38244.0 30872.0 38843.0 95078.0 30638.0 32118.0 25524.0 36183.0 27293.0 37787.0 37156.0 30749.0 30598.0 39106.0 38216.0 33101.0 30764.0 <goal><value><comment>n</comment><stats><goals... <shoton /> <shotoff /> <foulcommit /> <card><value><comment>y</comment><stats><ycard... <cross /> <corner /> <possession /> 1.57 3.8 6.0 1.55 3.70 5.45 1.6 3.6 4.8 1.53 3.50 5.50 NaN NaN NaN 1.53 3.50 5.50 1.62 3.40 5.50 1.55 3.50 5.50 1.60 3.60 5.75 1.53 3.75 5.50 7809 7809 Germany 1. Bundesliga 7809 Germany 15617 9823 21.0 FC Bayern Munich BMU 15618 9790 28.0 Hamburger SV HAM 2008/2009 Germany Bundesliga 1 D1 Bayern Munich Hamburg 2 2 D 2 1 H NaN NaN 16.0 13.0 3.0 3.0 NaN NaN 2.0 2.0 16.0 26.0 NaN NaN NaN NaN 1.0 4.0 0.0 0.0 NaN NaN
1 7810 7809 7809 2008/2009 1 2008-08-16 499318 8178 9789 2 3 1.0 2.0 4.0 6.0 8.0 5.0 3.0 5.0 7.0 4.0 6.0 1.0 2.0 4.0 6.0 8.0 2.0 4.0 6.0 8.0 4.0 6.0 1.0 3.0 3.0 3.0 3.0 5.0 7.0 7.0 7.0 10.0 10.0 1.0 3.0 3.0 3.0 3.0 7.0 7.0 7.0 7.0 10.0 10.0 36147.0 27427.0 27492.0 128037.0 28081.0 27429.0 34681.0 49939.0 30937.0 27556.0 31199.0 27358.0 79737.0 71399.0 36388.0 27360.0 43319.0 36132.0 30707.0 27363.0 31718.0 27514.0 <goal><value><comment>n</comment><stats><goals... <shoton /> <shotoff /> <foulcommit /> <card><value><comment>y</comment><stats><ycard... <cross /> <corner /> <possession /> 2.05 3.3 3.6 2.05 3.25 3.30 2.0 3.3 3.2 1.91 3.25 3.40 NaN NaN NaN 1.95 3.10 3.50 1.91 3.25 3.75 2.00 3.25 3.25 2.05 3.30 3.50 2.00 3.25 3.40 7809 7809 Germany 1. Bundesliga 7809 Germany 15619 8178 32.0 Bayer 04 Leverkusen LEV 15620 9789 22.0 Borussia Dortmund DOR 2008/2009 Germany Bundesliga 1 D1 Leverkusen Dortmund 2 3 A 1 2 A NaN NaN 19.0 11.0 9.0 4.0 NaN NaN 7.0 3.0 13.0 20.0 NaN NaN NaN NaN 3.0 2.0 0.0 0.0 NaN NaN
3 7812 7809 7809 2008/2009 1 2008-08-16 499320 8721 8722 2 1 1.0 2.0 4.0 6.0 8.0 5.0 3.0 5.0 7.0 4.0 6.0 1.0 2.0 4.0 6.0 8.0 5.0 4.0 6.0 5.0 4.0 6.0 1.0 3.0 3.0 3.0 3.0 5.0 7.0 7.0 7.0 10.0 10.0 1.0 3.0 3.0 3.0 3.0 5.0 7.0 7.0 9.0 11.0 11.0 30820.0 30906.0 30914.0 30902.0 37317.0 19511.0 30530.0 27324.0 38606.0 39902.0 27339.0 26173.0 42184.0 97491.0 38215.0 23628.0 30789.0 36395.0 36031.0 33348.0 38848.0 39805.0 <goal><value><comment>n</comment><stats><goals... <shoton /> <shotoff /> <foulcommit /> <card><value><comment>y</comment><stats><ycard... <cross /> <corner /> <possession /> 1.62 3.6 6.0 1.55 3.75 5.40 1.6 3.6 4.8 1.57 3.50 5.00 NaN NaN NaN 1.57 3.50 5.00 1.53 3.50 6.00 1.60 3.40 5.00 1.63 3.60 5.50 1.57 3.75 5.00 7809 7809 Germany 1. Bundesliga 7809 Germany 15623 8721 175.0 VfL Wolfsburg WOL 15624 8722 31.0 1. FC Köln FCK 2008/2009 Germany Bundesliga 1 D1 Wolfsburg FC Koln 2 1 H 0 1 A NaN NaN 17.0 4.0 9.0 2.0 NaN NaN 10.0 3.0 10.0 13.0 NaN NaN NaN NaN 0.0 2.0 0.0 0.0 NaN NaN
5 7814 7809 7809 2008/2009 1 2008-08-16 499322 9912 8697 2 2 1.0 2.0 4.0 6.0 8.0 1.0 3.0 5.0 7.0 9.0 5.0 1.0 2.0 4.0 6.0 8.0 5.0 4.0 6.0 5.0 4.0 6.0 1.0 3.0 3.0 3.0 3.0 7.0 7.0 7.0 7.0 7.0 11.0 1.0 3.0 3.0 3.0 3.0 5.0 7.0 7.0 9.0 11.0 11.0 36058.0 37201.0 36056.0 27451.0 27460.0 27418.0 27462.0 24138.0 36007.0 47551.0 30266.0 27313.0 35989.0 41927.0 28480.0 27310.0 30252.0 30706.0 26257.0 27316.0 30827.0 37550.0 <goal><value><comment>n</comment><stats><goals... <shoton><value><stats><shoton>1</shoton></stat... <shotoff><value><stats><shotoff>1</shotoff></s... <foulcommit><value><stats><foulscommitted>1</f... <card><value><comment>y</comment><stats><ycard... <cross><value><stats><crosses>1</crosses></sta... <corner><value><stats><corners>1</corners></st... <possession /> 4.50 3.5 1.8 4.00 3.40 1.80 3.6 3.2 1.9 3.75 3.30 1.80 NaN NaN NaN 4.20 3.25 1.73 3.75 3.40 1.83 4.00 3.25 1.80 4.00 3.40 1.85 4.00 3.30 1.83 7809 7809 Germany 1. Bundesliga 7809 Germany 15627 9912 159.0 DSC Arminia Bielefeld BIE 15628 8697 38.0 SV Werder Bremen WBR 2008/2009 Germany Bundesliga 1 D1 Bielefeld Werder Bremen 2 2 D 0 0 D NaN NaN 13.0 17.0 5.0 5.0 NaN NaN 4.0 4.0 18.0 13.0 NaN NaN NaN NaN 2.0 2.0 0.0 0.0 NaN NaN
4 7813 7809 7809 2008/2009 1 2008-08-17 499321 9810 8177 0 2 1.0 2.0 4.0 6.0 8.0 4.0 6.0 2.0 8.0 4.0 6.0 1.0 2.0 4.0 6.0 8.0 2.0 4.0 6.0 8.0 5.0 5.0 1.0 3.0 3.0 3.0 3.0 5.0 5.0 7.0 7.0 10.0 10.0 1.0 3.0 3.0 3.0 3.0 7.0 7.0 7.0 7.0 9.0 11.0 27467.0 27472.0 26383.0 27475.0 30912.0 27471.0 38863.0 41923.0 41034.0 37760.0 27481.0 24104.0 25815.0 45352.0 30693.0 37332.0 36130.0 13518.0 16300.0 31244.0 25819.0 36788.0 <goal><value><comment>n</comment><stats><goals... <shoton /> <shotoff /> <foulcommit /> <card><value><comment>y</comment><stats><ycard... <cross /> <corner /> <possession /> 2.35 3.3 3.0 2.35 3.15 2.80 2.2 3.3 2.8 2.20 3.25 2.75 NaN NaN NaN 2.20 3.20 2.80 2.10 3.20 3.25 2.20 3.25 2.90 2.35 3.15 3.00 2.25 3.25 2.88 7809 7809 Germany 1. Bundesliga 7809 Germany 15625 9810 1824.0 Eintracht Frankfurt EFR 15626 8177 166.0 Hertha BSC Berlin HBE 2008/2009 Germany Bundesliga 1 D1 Ein Frankfurt Hertha 0 2 A 0 1 A NaN NaN 18.0 5.0 1.0 4.0 NaN NaN 11.0 2.0 7.0 19.0 NaN NaN NaN NaN 0.0 1.0 0.0 0.0 NaN NaN
In [108]:
players_ratings_clean.sort_values(by='date', inplace=True)
In [109]:
players_ratings_clean.head()
Out[109]:
id player_fifa_api_id player_api_id date overall_rating potential preferred_foot attacking_work_rate defensive_work_rate crossing finishing heading_accuracy short_passing volleys dribbling curve free_kick_accuracy long_passing ball_control acceleration sprint_speed agility reactions balance shot_power jumping stamina strength long_shots aggression interceptions positioning vision penalties marking standing_tackle sliding_tackle gk_diving gk_handling gk_kicking gk_positioning gk_reflexes id.1 player_api_id.1 player_name player_fifa_api_id.1 birthday height weight
183977 183978 102359 39902 2007-02-22 80.0 81.0 right medium low 74.0 68.0 57.0 88.0 77.0 87.0 86.0 53.0 78.0 91.0 58.0 64.0 77.0 66.0 73.0 72.0 58.0 67.0 59.0 78.0 63.0 63.0 68.0 88.0 53.0 38.0 32.0 30.0 9.0 9.0 78.0 7.0 15.0 11075 39902 Zvjezdan Misimovic 102359 1982-06-05 00:00:00 180.34 176
79627 79628 45453 38343 2007-02-22 67.0 69.0 left medium medium 63.0 62.0 59.0 63.0 38.0 68.0 53.0 65.0 51.0 62.0 61.0 68.0 65.0 64.0 61.0 66.0 69.0 83.0 54.0 61.0 58.0 62.0 60.0 63.0 65.0 44.0 64.0 64.0 7.0 15.0 51.0 8.0 6.0 4797 38343 Jef Delen 45453 1976-06-29 00:00:00 175.26 139
79620 79621 149086 42091 2007-02-22 67.0 72.0 right medium medium 66.0 71.0 49.0 38.0 70.0 78.0 70.0 58.0 76.0 71.0 71.0 76.0 70.0 49.0 66.0 69.0 76.0 73.0 68.0 56.0 58.0 49.0 73.0 70.0 58.0 64.0 21.0 33.0 9.0 10.0 76.0 6.0 15.0 4796 42091 Jedaias Capucho Neves 149086 1979-04-15 00:00:00 175.26 163
79610 79611 192317 190142 2007-02-22 52.0 75.0 left medium medium 4.0 4.0 11.0 18.0 6.0 6.0 8.0 5.0 21.0 18.0 47.0 43.0 33.0 40.0 41.0 21.0 40.0 52.0 50.0 3.0 21.0 21.0 17.0 14.0 3.0 23.0 11.0 10.0 60.0 47.0 48.0 53.0 51.0 4795 190142 Jed Steer 192317 1992-09-23 00:00:00 182.88 176
79579 79580 169171 37978 2007-02-22 69.0 78.0 right medium low 59.0 63.0 53.0 59.0 61.0 72.0 43.0 53.0 55.0 62.0 82.0 84.0 74.0 67.0 76.0 69.0 70.0 78.0 68.0 61.0 59.0 43.0 48.0 46.0 53.0 27.0 43.0 34.0 1.0 3.0 55.0 9.0 5.0 4794 37978 Jeanvion Yulu-Matondo 169171 1986-01-05 00:00:00 177.80 163
In [110]:
players_ratings_clean.tail()
Out[110]:
id player_fifa_api_id player_api_id date overall_rating potential preferred_foot attacking_work_rate defensive_work_rate crossing finishing heading_accuracy short_passing volleys dribbling curve free_kick_accuracy long_passing ball_control acceleration sprint_speed agility reactions balance shot_power jumping stamina strength long_shots aggression interceptions positioning vision penalties marking standing_tackle sliding_tackle gk_diving gk_handling gk_kicking gk_positioning gk_reflexes id.1 player_api_id.1 player_name player_fifa_api_id.1 birthday height weight
57229 57230 197948 184521 2016-07-07 73.0 77.0 right medium high 51.0 42.0 75.0 68.0 42.0 47.0 47.0 41.0 67.0 62.0 49.0 55.0 52.0 67.0 47.0 77.0 55.0 74.0 92.0 66.0 77.0 72.0 46.0 32.0 43.0 74.0 75.0 69.0 11.0 15.0 15.0 12.0 7.0 3427 184521 Florian Lejeune 197948 1991-05-20 00:00:00 187.96 179
1329 1330 231638 495841 2016-07-07 72.0 84.0 right medium medium 49.0 78.0 71.0 63.0 56.0 74.0 45.0 43.0 49.0 73.0 82.0 81.0 60.0 71.0 60.0 73.0 61.0 64.0 63.0 70.0 35.0 20.0 69.0 59.0 77.0 20.0 20.0 21.0 6.0 14.0 13.0 8.0 6.0 87 495841 Adalberto Penaranda 231638 1997-05-31 00:00:00 182.88 172
153508 153509 172555 45400 2016-07-07 68.0 70.0 right medium low 33.0 70.0 56.0 63.0 60.0 63.0 55.0 27.0 56.0 66.0 90.0 84.0 73.0 60.0 64.0 75.0 67.0 63.0 59.0 69.0 83.0 37.0 75.0 45.0 66.0 23.0 17.0 23.0 13.0 11.0 6.0 9.0 14.0 9222 45400 Ronnie Schwartz 172555 1989-08-29 00:00:00 182.88 176
19675 19676 166074 210065 2016-07-07 72.0 75.0 right medium low 67.0 67.0 57.0 66.0 69.0 80.0 67.0 73.0 58.0 77.0 78.0 90.0 68.0 73.0 55.0 85.0 65.0 78.0 83.0 70.0 56.0 24.0 67.0 61.0 66.0 19.0 24.0 21.0 15.0 7.0 8.0 7.0 11.0 1157 210065 Bebe 166074 1990-07-12 00:00:00 190.50 183
95620 95621 208127 307224 2016-07-07 64.0 68.0 right medium low 44.0 63.0 73.0 49.0 52.0 52.0 42.0 31.0 45.0 63.0 71.0 70.0 59.0 57.0 48.0 69.0 48.0 73.0 86.0 53.0 55.0 22.0 66.0 55.0 65.0 22.0 22.0 25.0 12.0 12.0 7.0 11.0 12.0 5759 307224 Kevin Koubemba 208127 1993-03-23 00:00:00 193.04 198

We are now ready to perform the merge_asof which required the data to be ordered on the field name to join. :)

Let us further prepare the join:

In [145]:
players_overall_ratings = players_ratings_clean[['player_api_id','overall_rating', 'date']]
In [146]:
players_overall_ratings = players_overall_ratings.reset_index(drop=True)
In [147]:
players_overall_ratings.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 183978 entries, 0 to 183977
Data columns (total 3 columns):
player_api_id     183978 non-null int64
overall_rating    183142 non-null float64
date              183978 non-null datetime64[ns]
dtypes: datetime64[ns](1), float64(1), int64(1)
memory usage: 4.2 MB
In [142]:
#Column 'player_api_id' is currently an int64, convert to float64
#players_overall_ratings['player_api_id'] = players_overall_ratings.player_api_id.astype(dtype=float)
In [143]:
players_overall_ratings.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 183978 entries, 0 to 183977
Data columns (total 3 columns):
player_api_id     183978 non-null float64
overall_rating    183142 non-null float64
date              183978 non-null datetime64[ns]
dtypes: datetime64[ns](1), float64(2)
memory usage: 4.2 MB
In [131]:
players_overall_ratings.head()
Out[131]:
player_api_id overall_rating date
0 39902 80.0 2007-02-22
1 38343 67.0 2007-02-22
2 42091 67.0 2007-02-22
3 190142 52.0 2007-02-22
4 37978 69.0 2007-02-22
In [132]:
bundesliga_clean = bundesliga_clean.reset_index(drop=True)
In [140]:
bundesliga_clean.info(verbose=True)
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 2376 entries, 0 to 2375
Data columns (total 164 columns):
id                    int64
country_id            int64
league_id             int64
season                object
stage                 int64
date                  datetime64[ns]
match_api_id          int64
home_team_api_id      int64
away_team_api_id      int64
home_team_goal        int64
away_team_goal        int64
home_player_X1        float64
home_player_X2        float64
home_player_X3        float64
home_player_X4        float64
home_player_X5        float64
home_player_X6        float64
home_player_X7        float64
home_player_X8        float64
home_player_X9        float64
home_player_X10       float64
home_player_X11       float64
away_player_X1        float64
away_player_X2        float64
away_player_X3        float64
away_player_X4        float64
away_player_X5        float64
away_player_X6        float64
away_player_X7        float64
away_player_X8        float64
away_player_X9        float64
away_player_X10       float64
away_player_X11       float64
home_player_Y1        float64
home_player_Y2        float64
home_player_Y3        float64
home_player_Y4        float64
home_player_Y5        float64
home_player_Y6        float64
home_player_Y7        float64
home_player_Y8        float64
home_player_Y9        float64
home_player_Y10       float64
home_player_Y11       float64
away_player_Y1        float64
away_player_Y2        float64
away_player_Y3        float64
away_player_Y4        float64
away_player_Y5        float64
away_player_Y6        float64
away_player_Y7        float64
away_player_Y8        float64
away_player_Y9        float64
away_player_Y10       float64
away_player_Y11       float64
home_player_1         float64
home_player_2         float64
home_player_3         float64
home_player_4         float64
home_player_5         float64
home_player_6         float64
home_player_7         float64
home_player_8         float64
home_player_9         float64
home_player_10        float64
home_player_11        float64
away_player_1         float64
away_player_2         float64
away_player_3         float64
away_player_4         float64
away_player_5         float64
away_player_6         float64
away_player_7         float64
away_player_8         float64
away_player_9         float64
away_player_10        float64
away_player_11        float64
goal                  object
shoton                object
shotoff               object
foulcommit            object
card                  object
cross                 object
corner                object
possession            object
B365H                 float64
B365D                 float64
B365A                 float64
BWH                   float64
BWD                   float64
BWA                   float64
IWH                   float64
IWD                   float64
IWA                   float64
LBH                   float64
LBD                   float64
LBA                   float64
PSH                   float64
PSD                   float64
PSA                   float64
WHH                   float64
WHD                   float64
WHA                   float64
SJH                   float64
SJD                   float64
SJA                   float64
VCH                   float64
VCD                   float64
VCA                   float64
GBH                   float64
GBD                   float64
GBA                   float64
BSH                   float64
BSD                   float64
BSA                   float64
id.1                  int64
country_id.1          int64
name                  object
id.2                  int64
name.1                object
id.3                  int64
team_api_id           int64
team_fifa_api_id      float64
team_long_name        object
team_short_name       object
id.4                  int64
team_api_id.1         int64
team_fifa_api_id.1    float64
team_long_name.1      object
team_short_name.1     object
Season                object
Country               object
League                object
Div                   object
HomeTeam              object
AwayTeam              object
FTHG                  int64
FTAG                  int64
FTR                   object
HTHG                  int64
HTAG                  int64
HTR                   object
Attendance            float64
Referee               object
HS                    float64
AS                    float64
HST                   float64
AST                   float64
HHW                   float64
AHW                   float64
HC                    float64
AC                    float64
HF                    float64
AF                    float64
HFKC                  float64
AFKC                  float64
HO                    float64
AO                    float64
HY                    float64
AY                    float64
HR                    float64
AR                    float64
HBP                   float64
ABP                   float64
dtypes: datetime64[ns](1), float64(119), int64(20), object(24)
memory usage: 3.0+ MB
In [138]:
bundesliga_clean.tail()
Out[138]:
id country_id league_id season stage date match_api_id home_team_api_id away_team_api_id home_team_goal away_team_goal home_player_X1 home_player_X2 home_player_X3 home_player_X4 home_player_X5 home_player_X6 home_player_X7 home_player_X8 home_player_X9 home_player_X10 home_player_X11 away_player_X1 away_player_X2 away_player_X3 away_player_X4 away_player_X5 away_player_X6 away_player_X7 away_player_X8 away_player_X9 away_player_X10 away_player_X11 home_player_Y1 home_player_Y2 home_player_Y3 home_player_Y4 home_player_Y5 home_player_Y6 home_player_Y7 home_player_Y8 home_player_Y9 home_player_Y10 home_player_Y11 away_player_Y1 away_player_Y2 away_player_Y3 away_player_Y4 away_player_Y5 away_player_Y6 away_player_Y7 away_player_Y8 away_player_Y9 away_player_Y10 away_player_Y11 home_player_1 home_player_2 home_player_3 home_player_4 home_player_5 home_player_6 home_player_7 home_player_8 home_player_9 home_player_10 home_player_11 away_player_1 away_player_2 away_player_3 away_player_4 away_player_5 away_player_6 away_player_7 away_player_8 away_player_9 away_player_10 away_player_11 goal shoton shotoff foulcommit card cross corner possession B365H B365D B365A BWH BWD BWA IWH IWD IWA LBH LBD LBA PSH PSD PSA WHH WHD WHA SJH SJD SJA VCH VCD VCA GBH GBD GBA BSH BSD BSA id.1 country_id.1 name id.2 name.1 id.3 team_api_id team_fifa_api_id team_long_name team_short_name id.4 team_api_id.1 team_fifa_api_id.1 team_long_name.1 team_short_name.1 Season Country League Div HomeTeam AwayTeam FTHG FTAG FTR HTHG HTAG HTR Attendance Referee HS AS HST AST HHW AHW HC AC HF AF HFKC AFKC HO AO HY AY HR AR HBP ABP
2371 10197 7809 7809 2015/2016 34 2016-05-14 2002490 8721 10269 3 1 1.0 2.0 4.0 6.0 8.0 4.0 6.0 3.0 5.0 7.0 5.0 1.0 2.0 4.0 6.0 8.0 4.0 6.0 3.0 5.0 7.0 5.0 1.0 3.0 3.0 3.0 3.0 6.0 6.0 8.0 8.0 8.0 11.0 1.0 3.0 3.0 3.0 3.0 6.0 6.0 8.0 8.0 8.0 11.0 170322.0 40193.0 28480.0 38432.0 37317.0 520342.0 161421.0 188498.0 298915.0 58346.0 178812.0 69149.0 182893.0 97734.0 514301.0 47547.0 182892.0 27324.0 450980.0 141145.0 281012.0 107717.0 <goal><value><comment>n</comment><stats><goals... <shoton><value><stats><blocked>1</blocked></st... <shotoff><value><stats><shotoff>1</shotoff></s... <foulcommit><value><stats><foulscommitted>1</f... <card><value><comment>y</comment><stats><ycard... <cross><value><stats><crosses>1</crosses></sta... <corner><value><stats><corners>1</corners></st... <possession><value><comment>58</comment><stats... 2.30 4.00 2.75 2.35 3.8 2.60 2.50 3.5 2.5 2.25 3.8 2.75 2.34 4.10 2.86 2.45 3.60 2.6 NaN NaN NaN 2.38 4.1 2.7 NaN NaN NaN NaN NaN NaN 7809 7809 Germany 1. Bundesliga 7809 Germany 15623 8721 175.0 VfL Wolfsburg WOL 15632 10269 36.0 VfB Stuttgart STU 2015/2016 Germany Bundesliga 1 D1 Wolfsburg Stuttgart 3 1 H 2 0 H NaN NaN 17.0 13.0 7.0 6.0 NaN NaN 7.0 9.0 8.0 12.0 NaN NaN NaN NaN 2.0 2.0 0.0 0.0 NaN NaN
2372 10199 7809 7809 2015/2016 34 2016-05-14 2002492 8697 9810 1 0 1.0 2.0 4.0 6.0 8.0 5.0 2.0 4.0 6.0 8.0 5.0 1.0 2.0 4.0 6.0 8.0 3.0 5.0 7.0 4.0 6.0 5.0 1.0 3.0 3.0 3.0 3.0 6.0 8.0 8.0 8.0 8.0 11.0 1.0 3.0 3.0 3.0 3.0 6.0 6.0 6.0 8.0 8.0 11.0 177953.0 107588.0 205893.0 193866.0 196205.0 617044.0 469764.0 35989.0 42860.0 602523.0 25366.0 66757.0 668362.0 18904.0 27475.0 155534.0 30530.0 167094.0 28081.0 38647.0 27155.0 170775.0 <goal><value><comment>n</comment><stats><goals... <shoton><value><stats><shoton>1</shoton></stat... <shotoff><value><stats><shotoff>1</shotoff></s... <foulcommit><value><stats><foulscommitted>1</f... <card><value><comment>y</comment><stats><ycard... <cross><value><stats><crosses>1</crosses></sta... <corner><value><stats><corners>1</corners></st... <possession><value><comment>51</comment><stats... 2.00 3.75 3.50 2.00 3.7 3.30 2.10 3.3 3.3 1.91 3.6 3.60 1.99 3.83 3.89 2.00 3.75 3.1 NaN NaN NaN 2.00 3.8 3.6 NaN NaN NaN NaN NaN NaN 7809 7809 Germany 1. Bundesliga 7809 Germany 15628 8697 38.0 SV Werder Bremen WBR 15625 9810 1824.0 Eintracht Frankfurt EFR 2015/2016 Germany Bundesliga 1 D1 Werder Bremen Ein Frankfurt 1 0 H 0 0 D NaN NaN 14.0 4.0 3.0 2.0 NaN NaN 6.0 4.0 17.0 12.0 NaN NaN NaN NaN 4.0 2.0 0.0 0.0 NaN NaN
2373 10198 7809 7809 2015/2016 34 2016-05-14 2002491 8406 9790 1 3 1.0 2.0 4.0 6.0 8.0 4.0 6.0 3.0 5.0 7.0 5.0 1.0 2.0 4.0 6.0 8.0 4.0 6.0 3.0 5.0 7.0 5.0 1.0 3.0 3.0 3.0 3.0 6.0 6.0 8.0 8.0 8.0 11.0 1.0 3.0 3.0 3.0 3.0 6.0 6.0 8.0 8.0 8.0 11.0 114737.0 111858.0 245526.0 29543.0 488298.0 303905.0 37319.0 114650.0 35997.0 150922.0 129918.0 94658.0 157252.0 30986.0 307069.0 240348.0 16300.0 128827.0 97747.0 198316.0 120845.0 193530.0 <goal><value><comment>n</comment><stats><goals... <shoton><value><stats><blocked>1</blocked></st... <shotoff><value><stats><shotoff>1</shotoff></s... <foulcommit><value><stats><foulscommitted>1</f... <card><value><comment>y</comment><stats><ycard... <cross><value><stats><crosses>1</crosses></sta... <corner><value><stats><corners>1</corners></st... <possession><value><comment>44</comment><stats... 2.00 3.50 3.80 2.00 3.5 3.50 2.00 3.3 3.6 2.00 3.5 3.60 2.02 3.70 3.94 2.00 3.60 3.2 NaN NaN NaN 2.00 3.7 3.7 NaN NaN NaN NaN NaN NaN 7809 7809 Germany 1. Bundesliga 7809 Germany 17465 8406 100409.0 FC Augsburg AUG 15618 9790 28.0 Hamburger SV HAM 2015/2016 Germany Bundesliga 1 D1 Augsburg Hamburg 1 3 A 1 1 D NaN NaN 12.0 13.0 7.0 6.0 NaN NaN 2.0 4.0 12.0 24.0 NaN NaN NaN NaN 3.0 3.0 0.0 0.0 NaN NaN
2374 10200 7809 7809 2015/2016 34 2016-05-14 2002493 8226 10189 1 4 1.0 3.0 5.0 7.0 2.0 4.0 6.0 8.0 3.0 5.0 7.0 1.0 2.0 4.0 6.0 8.0 5.0 2.0 4.0 6.0 8.0 5.0 1.0 3.0 3.0 3.0 7.0 7.0 7.0 7.0 10.0 10.0 10.0 1.0 3.0 3.0 3.0 3.0 6.0 8.0 8.0 8.0 8.0 11.0 97746.0 189982.0 177942.0 303914.0 212156.0 119525.0 34267.0 27866.0 212819.0 173461.0 212893.0 49586.0 68253.0 171698.0 145551.0 304345.0 237542.0 530859.0 425963.0 95082.0 179511.0 36784.0 <goal><value><comment>n</comment><stats><goals... <shoton><value><stats><shoton>1</shoton></stat... <shotoff><value><stats><shotoff>1</shotoff></s... <foulcommit><value><stats><foulscommitted>1</f... <card><value><comment>y</comment><stats><ycard... <cross><value><stats><crosses>1</crosses></sta... <corner><value><stats><corners>1</corners></st... <possession><value><comment>51</comment><stats... 3.20 3.80 2.05 2.90 3.9 2.15 3.00 3.6 2.1 3.00 3.8 2.15 3.09 4.06 2.22 2.88 3.75 2.1 NaN NaN NaN 3.00 3.9 2.2 NaN NaN NaN NaN NaN NaN 7809 7809 Germany 1. Bundesliga 7809 Germany 15630 8226 10029.0 TSG 1899 Hoffenheim HOF 15621 10189 34.0 FC Schalke 04 S04 2015/2016 Germany Bundesliga 1 D1 Hoffenheim Schalke 04 1 4 A 1 2 A NaN NaN 14.0 12.0 4.0 8.0 NaN NaN 7.0 2.0 15.0 11.0 NaN NaN NaN NaN 1.0 1.0 0.0 0.0 NaN NaN
2375 10201 7809 7809 2015/2016 34 2016-05-14 2002494 9905 8177 0 0 1.0 2.0 4.0 6.0 8.0 4.0 6.0 3.0 5.0 7.0 5.0 1.0 2.0 4.0 6.0 8.0 4.0 6.0 3.0 5.0 7.0 5.0 1.0 3.0 3.0 3.0 3.0 6.0 6.0 8.0 8.0 8.0 11.0 1.0 3.0 3.0 3.0 3.0 6.0 6.0 8.0 8.0 8.0 11.0 287894.0 191080.0 193901.0 36000.0 426873.0 59595.0 95228.0 178804.0 278863.0 176953.0 291425.0 40094.0 12330.0 95081.0 278831.0 229759.0 425962.0 42297.0 298823.0 196311.0 91984.0 31906.0 <goal /> <shoton><value><stats><shoton>1</shoton></stat... <shotoff><value><stats><shotoff>1</shotoff></s... <foulcommit><value><stats><foulscommitted>1</f... <card><value><comment>y</comment><stats><ycard... <cross><value><stats><crosses>1</crosses></sta... <corner><value><stats><corners>1</corners></st... <possession><value><comment>40</comment><stats... 2.05 3.60 3.50 2.05 3.6 3.25 1.85 3.5 3.9 2.05 3.4 3.50 2.09 3.65 3.73 2.10 3.40 3.1 NaN NaN NaN 2.10 3.6 3.5 NaN NaN NaN NaN NaN NaN 7809 7809 Germany 1. Bundesliga 7809 Germany 16243 9905 169.0 1. FSV Mainz 05 MAI 15626 8177 166.0 Hertha BSC Berlin HBE 2015/2016 Germany Bundesliga 1 D1 Mainz Hertha 0 0 D 0 0 D NaN NaN 7.0 11.0 3.0 5.0 NaN NaN 2.0 2.0 12.0 20.0 NaN NaN NaN NaN 3.0 3.0 0.0 1.0 NaN NaN
In [139]:
bundesliga_clean.columns
Out[139]:
Index(['id', 'country_id', 'league_id', 'season', 'stage', 'date', 'match_api_id', 'home_team_api_id', 'away_team_api_id', 'home_team_goal',
       ...
       'HFKC', 'AFKC', 'HO', 'AO', 'HY', 'AY', 'HR', 'AR', 'HBP', 'ABP'], dtype='object', length=164)
In [148]:
#Column 'home_player_1' is currently a float64, convert to int64
bundesliga_clean['home_player_1'] = bundesliga_clean.home_player_1.astype(dtype=int)
In [149]:
bundesliga_clean.info(verbose=True)
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 2376 entries, 0 to 2375
Data columns (total 164 columns):
id                    int64
country_id            int64
league_id             int64
season                object
stage                 int64
date                  datetime64[ns]
match_api_id          int64
home_team_api_id      int64
away_team_api_id      int64
home_team_goal        int64
away_team_goal        int64
home_player_X1        float64
home_player_X2        float64
home_player_X3        float64
home_player_X4        float64
home_player_X5        float64
home_player_X6        float64
home_player_X7        float64
home_player_X8        float64
home_player_X9        float64
home_player_X10       float64
home_player_X11       float64
away_player_X1        float64
away_player_X2        float64
away_player_X3        float64
away_player_X4        float64
away_player_X5        float64
away_player_X6        float64
away_player_X7        float64
away_player_X8        float64
away_player_X9        float64
away_player_X10       float64
away_player_X11       float64
home_player_Y1        float64
home_player_Y2        float64
home_player_Y3        float64
home_player_Y4        float64
home_player_Y5        float64
home_player_Y6        float64
home_player_Y7        float64
home_player_Y8        float64
home_player_Y9        float64
home_player_Y10       float64
home_player_Y11       float64
away_player_Y1        float64
away_player_Y2        float64
away_player_Y3        float64
away_player_Y4        float64
away_player_Y5        float64
away_player_Y6        float64
away_player_Y7        float64
away_player_Y8        float64
away_player_Y9        float64
away_player_Y10       float64
away_player_Y11       float64
home_player_1         int64
home_player_2         float64
home_player_3         float64
home_player_4         float64
home_player_5         float64
home_player_6         float64
home_player_7         float64
home_player_8         float64
home_player_9         float64
home_player_10        float64
home_player_11        float64
away_player_1         float64
away_player_2         float64
away_player_3         float64
away_player_4         float64
away_player_5         float64
away_player_6         float64
away_player_7         float64
away_player_8         float64
away_player_9         float64
away_player_10        float64
away_player_11        float64
goal                  object
shoton                object
shotoff               object
foulcommit            object
card                  object
cross                 object
corner                object
possession            object
B365H                 float64
B365D                 float64
B365A                 float64
BWH                   float64
BWD                   float64
BWA                   float64
IWH                   float64
IWD                   float64
IWA                   float64
LBH                   float64
LBD                   float64
LBA                   float64
PSH                   float64
PSD                   float64
PSA                   float64
WHH                   float64
WHD                   float64
WHA                   float64
SJH                   float64
SJD                   float64
SJA                   float64
VCH                   float64
VCD                   float64
VCA                   float64
GBH                   float64
GBD                   float64
GBA                   float64
BSH                   float64
BSD                   float64
BSA                   float64
id.1                  int64
country_id.1          int64
name                  object
id.2                  int64
name.1                object
id.3                  int64
team_api_id           int64
team_fifa_api_id      float64
team_long_name        object
team_short_name       object
id.4                  int64
team_api_id.1         int64
team_fifa_api_id.1    float64
team_long_name.1      object
team_short_name.1     object
Season                object
Country               object
League                object
Div                   object
HomeTeam              object
AwayTeam              object
FTHG                  int64
FTAG                  int64
FTR                   object
HTHG                  int64
HTAG                  int64
HTR                   object
Attendance            float64
Referee               object
HS                    float64
AS                    float64
HST                   float64
AST                   float64
HHW                   float64
AHW                   float64
HC                    float64
AC                    float64
HF                    float64
AF                    float64
HFKC                  float64
AFKC                  float64
HO                    float64
AO                    float64
HY                    float64
AY                    float64
HR                    float64
AR                    float64
HBP                   float64
ABP                   float64
dtypes: datetime64[ns](1), float64(118), int64(21), object(24)
memory usage: 3.0+ MB
In [150]:
test_10 = pd.merge_asof(left=bundesliga_clean,
                        right=players_overall_ratings,
                        on=["date"],
                        left_by=["home_player_1"],
                        right_by=["player_api_id"],
                        direction= 'nearest')
In [153]:
test_10.info(verbose= True, null_counts = True)
<class 'pandas.core.frame.DataFrame'>
Int64Index: 2376 entries, 0 to 2375
Data columns (total 166 columns):
id                    2376 non-null int64
country_id            2376 non-null int64
league_id             2376 non-null int64
season                2376 non-null object
stage                 2376 non-null int64
date                  2376 non-null datetime64[ns]
match_api_id          2376 non-null int64
home_team_api_id      2376 non-null int64
away_team_api_id      2376 non-null int64
home_team_goal        2376 non-null int64
away_team_goal        2376 non-null int64
home_player_X1        2376 non-null float64
home_player_X2        2376 non-null float64
home_player_X3        2376 non-null float64
home_player_X4        2376 non-null float64
home_player_X5        2376 non-null float64
home_player_X6        2376 non-null float64
home_player_X7        2376 non-null float64
home_player_X8        2376 non-null float64
home_player_X9        2376 non-null float64
home_player_X10       2376 non-null float64
home_player_X11       2376 non-null float64
away_player_X1        2376 non-null float64
away_player_X2        2376 non-null float64
away_player_X3        2376 non-null float64
away_player_X4        2376 non-null float64
away_player_X5        2376 non-null float64
away_player_X6        2376 non-null float64
away_player_X7        2376 non-null float64
away_player_X8        2376 non-null float64
away_player_X9        2376 non-null float64
away_player_X10       2376 non-null float64
away_player_X11       2374 non-null float64
home_player_Y1        2376 non-null float64
home_player_Y2        2376 non-null float64
home_player_Y3        2376 non-null float64
home_player_Y4        2376 non-null float64
home_player_Y5        2376 non-null float64
home_player_Y6        2376 non-null float64
home_player_Y7        2376 non-null float64
home_player_Y8        2376 non-null float64
home_player_Y9        2376 non-null float64
home_player_Y10       2376 non-null float64
home_player_Y11       2376 non-null float64
away_player_Y1        2376 non-null float64
away_player_Y2        2376 non-null float64
away_player_Y3        2376 non-null float64
away_player_Y4        2376 non-null float64
away_player_Y5        2376 non-null float64
away_player_Y6        2376 non-null float64
away_player_Y7        2376 non-null float64
away_player_Y8        2376 non-null float64
away_player_Y9        2376 non-null float64
away_player_Y10       2376 non-null float64
away_player_Y11       2374 non-null float64
home_player_1         2376 non-null int64
home_player_2         2376 non-null float64
home_player_3         2376 non-null float64
home_player_4         2376 non-null float64
home_player_5         2376 non-null float64
home_player_6         2376 non-null float64
home_player_7         2376 non-null float64
home_player_8         2376 non-null float64
home_player_9         2376 non-null float64
home_player_10        2376 non-null float64
home_player_11        2376 non-null float64
away_player_1         2376 non-null float64
away_player_2         2376 non-null float64
away_player_3         2376 non-null float64
away_player_4         2376 non-null float64
away_player_5         2376 non-null float64
away_player_6         2376 non-null float64
away_player_7         2376 non-null float64
away_player_8         2376 non-null float64
away_player_9         2376 non-null float64
away_player_10        2376 non-null float64
away_player_11        2376 non-null float64
goal                  2376 non-null object
shoton                2376 non-null object
shotoff               2376 non-null object
foulcommit            2376 non-null object
card                  2376 non-null object
cross                 2376 non-null object
corner                2376 non-null object
possession            2376 non-null object
B365H                 2375 non-null float64
B365D                 2375 non-null float64
B365A                 2375 non-null float64
BWH                   2375 non-null float64
BWD                   2375 non-null float64
BWA                   2375 non-null float64
IWH                   2370 non-null float64
IWD                   2370 non-null float64
IWA                   2370 non-null float64
LBH                   2375 non-null float64
LBD                   2375 non-null float64
LBA                   2375 non-null float64
PSH                   1223 non-null float64
PSD                   1223 non-null float64
PSA                   1223 non-null float64
WHH                   2375 non-null float64
WHD                   2375 non-null float64
WHA                   2375 non-null float64
SJH                   1788 non-null float64
SJD                   1788 non-null float64
SJA                   1788 non-null float64
VCH                   2375 non-null float64
VCD                   2375 non-null float64
VCA                   2375 non-null float64
GBH                   1456 non-null float64
GBD                   1456 non-null float64
GBA                   1456 non-null float64
BSH                   1456 non-null float64
BSD                   1456 non-null float64
BSA                   1456 non-null float64
id.1                  2376 non-null int64
country_id.1          2376 non-null int64
name                  2376 non-null object
id.2                  2376 non-null int64
name.1                2376 non-null object
id.3                  2376 non-null int64
team_api_id           2376 non-null int64
team_fifa_api_id      2376 non-null float64
team_long_name        2376 non-null object
team_short_name       2376 non-null object
id.4                  2376 non-null int64
team_api_id.1         2376 non-null int64
team_fifa_api_id.1    2376 non-null float64
team_long_name.1      2376 non-null object
team_short_name.1     2376 non-null object
Season                2376 non-null object
Country               2376 non-null object
League                2376 non-null object
Div                   2376 non-null object
HomeTeam              2376 non-null object
AwayTeam              2376 non-null object
FTHG                  2376 non-null int64
FTAG                  2376 non-null int64
FTR                   2376 non-null object
HTHG                  2376 non-null int64
HTAG                  2376 non-null int64
HTR                   2376 non-null object
Attendance            0 non-null float64
Referee               0 non-null object
HS                    2376 non-null float64
AS                    2376 non-null float64
HST                   2376 non-null float64
AST                   2376 non-null float64
HHW                   0 non-null float64
AHW                   0 non-null float64
HC                    2376 non-null float64
AC                    2376 non-null float64
HF                    2376 non-null float64
AF                    2376 non-null float64
HFKC                  0 non-null float64
AFKC                  0 non-null float64
HO                    0 non-null float64
AO                    0 non-null float64
HY                    2376 non-null float64
AY                    2376 non-null float64
HR                    2376 non-null float64
AR                    2376 non-null float64
HBP                   0 non-null float64
ABP                   0 non-null float64
player_api_id         2376 non-null int64
overall_rating        2376 non-null float64
dtypes: datetime64[ns](1), float64(119), int64(22), object(24)
memory usage: 3.0+ MB
In [155]:
#Column of the players are currently a float64, convert to int64

for player in players:
    
    bundesliga_clean[player] = bundesliga_clean[player].astype(dtype=int)
In [ ]:
all_columns = pd.Series(list(bundesliga) + list(new_df))
all_columns[all_columns.duplicated()]
In [176]:
for player in players:
    
    bundesliga_clean = pd.merge_asof(left=bundesliga_clean,
                        right=players_overall_ratings,
                        on=["date"],
                        left_by=[player],
                        right_by=["player_api_id"],
                        suffixes = ["", "_" + player],
                        direction= 'nearest')
In [178]:
bundesliga_clean.info(verbose=True, null_counts=True)
<class 'pandas.core.frame.DataFrame'>
Int64Index: 2376 entries, 0 to 2375
Data columns (total 208 columns):
id                               2376 non-null int64
country_id                       2376 non-null int64
league_id                        2376 non-null int64
season                           2376 non-null object
stage                            2376 non-null int64
date                             2376 non-null datetime64[ns]
match_api_id                     2376 non-null int64
home_team_api_id                 2376 non-null int64
away_team_api_id                 2376 non-null int64
home_team_goal                   2376 non-null int64
away_team_goal                   2376 non-null int64
home_player_X1                   2376 non-null float64
home_player_X2                   2376 non-null float64
home_player_X3                   2376 non-null float64
home_player_X4                   2376 non-null float64
home_player_X5                   2376 non-null float64
home_player_X6                   2376 non-null float64
home_player_X7                   2376 non-null float64
home_player_X8                   2376 non-null float64
home_player_X9                   2376 non-null float64
home_player_X10                  2376 non-null float64
home_player_X11                  2376 non-null float64
away_player_X1                   2376 non-null float64
away_player_X2                   2376 non-null float64
away_player_X3                   2376 non-null float64
away_player_X4                   2376 non-null float64
away_player_X5                   2376 non-null float64
away_player_X6                   2376 non-null float64
away_player_X7                   2376 non-null float64
away_player_X8                   2376 non-null float64
away_player_X9                   2376 non-null float64
away_player_X10                  2376 non-null float64
away_player_X11                  2374 non-null float64
home_player_Y1                   2376 non-null float64
home_player_Y2                   2376 non-null float64
home_player_Y3                   2376 non-null float64
home_player_Y4                   2376 non-null float64
home_player_Y5                   2376 non-null float64
home_player_Y6                   2376 non-null float64
home_player_Y7                   2376 non-null float64
home_player_Y8                   2376 non-null float64
home_player_Y9                   2376 non-null float64
home_player_Y10                  2376 non-null float64
home_player_Y11                  2376 non-null float64
away_player_Y1                   2376 non-null float64
away_player_Y2                   2376 non-null float64
away_player_Y3                   2376 non-null float64
away_player_Y4                   2376 non-null float64
away_player_Y5                   2376 non-null float64
away_player_Y6                   2376 non-null float64
away_player_Y7                   2376 non-null float64
away_player_Y8                   2376 non-null float64
away_player_Y9                   2376 non-null float64
away_player_Y10                  2376 non-null float64
away_player_Y11                  2374 non-null float64
home_player_1                    2376 non-null int64
home_player_2                    2376 non-null int64
home_player_3                    2376 non-null int64
home_player_4                    2376 non-null int64
home_player_5                    2376 non-null int64
home_player_6                    2376 non-null int64
home_player_7                    2376 non-null int64
home_player_8                    2376 non-null int64
home_player_9                    2376 non-null int64
home_player_10                   2376 non-null int64
home_player_11                   2376 non-null int64
away_player_1                    2376 non-null int64
away_player_2                    2376 non-null int64
away_player_3                    2376 non-null int64
away_player_4                    2376 non-null int64
away_player_5                    2376 non-null int64
away_player_6                    2376 non-null int64
away_player_7                    2376 non-null int64
away_player_8                    2376 non-null int64
away_player_9                    2376 non-null int64
away_player_10                   2376 non-null int64
away_player_11                   2376 non-null int64
goal                             2376 non-null object
shoton                           2376 non-null object
shotoff                          2376 non-null object
foulcommit                       2376 non-null object
card                             2376 non-null object
cross                            2376 non-null object
corner                           2376 non-null object
possession                       2376 non-null object
B365H                            2375 non-null float64
B365D                            2375 non-null float64
B365A                            2375 non-null float64
BWH                              2375 non-null float64
BWD                              2375 non-null float64
BWA                              2375 non-null float64
IWH                              2370 non-null float64
IWD                              2370 non-null float64
IWA                              2370 non-null float64
LBH                              2375 non-null float64
LBD                              2375 non-null float64
LBA                              2375 non-null float64
PSH                              1223 non-null float64
PSD                              1223 non-null float64
PSA                              1223 non-null float64
WHH                              2375 non-null float64
WHD                              2375 non-null float64
WHA                              2375 non-null float64
SJH                              1788 non-null float64
SJD                              1788 non-null float64
SJA                              1788 non-null float64
VCH                              2375 non-null float64
VCD                              2375 non-null float64
VCA                              2375 non-null float64
GBH                              1456 non-null float64
GBD                              1456 non-null float64
GBA                              1456 non-null float64
BSH                              1456 non-null float64
BSD                              1456 non-null float64
BSA                              1456 non-null float64
id.1                             2376 non-null int64
country_id.1                     2376 non-null int64
name                             2376 non-null object
id.2                             2376 non-null int64
name.1                           2376 non-null object
id.3                             2376 non-null int64
team_api_id                      2376 non-null int64
team_fifa_api_id                 2376 non-null float64
team_long_name                   2376 non-null object
team_short_name                  2376 non-null object
id.4                             2376 non-null int64
team_api_id.1                    2376 non-null int64
team_fifa_api_id.1               2376 non-null float64
team_long_name.1                 2376 non-null object
team_short_name.1                2376 non-null object
Season                           2376 non-null object
Country                          2376 non-null object
League                           2376 non-null object
Div                              2376 non-null object
HomeTeam                         2376 non-null object
AwayTeam                         2376 non-null object
FTHG                             2376 non-null int64
FTAG                             2376 non-null int64
FTR                              2376 non-null object
HTHG                             2376 non-null int64
HTAG                             2376 non-null int64
HTR                              2376 non-null object
Attendance                       0 non-null float64
Referee                          0 non-null object
HS                               2376 non-null float64
AS                               2376 non-null float64
HST                              2376 non-null float64
AST                              2376 non-null float64
HHW                              0 non-null float64
AHW                              0 non-null float64
HC                               2376 non-null float64
AC                               2376 non-null float64
HF                               2376 non-null float64
AF                               2376 non-null float64
HFKC                             0 non-null float64
AFKC                             0 non-null float64
HO                               0 non-null float64
AO                               0 non-null float64
HY                               2376 non-null float64
AY                               2376 non-null float64
HR                               2376 non-null float64
AR                               2376 non-null float64
HBP                              0 non-null float64
ABP                              0 non-null float64
player_api_id                    2376 non-null int64
overall_rating                   2376 non-null float64
player_api_id_home_player_2      2376 non-null int64
overall_rating_home_player_2     2376 non-null float64
player_api_id_home_player_3      2376 non-null int64
overall_rating_home_player_3     2374 non-null float64
player_api_id_home_player_4      2376 non-null int64
overall_rating_home_player_4     2375 non-null float64
player_api_id_home_player_5      2376 non-null int64
overall_rating_home_player_5     2376 non-null float64
player_api_id_home_player_6      2376 non-null int64
overall_rating_home_player_6     2376 non-null float64
player_api_id_home_player_7      2376 non-null int64
overall_rating_home_player_7     2376 non-null float64
player_api_id_home_player_8      2376 non-null int64
overall_rating_home_player_8     2376 non-null float64
player_api_id_home_player_9      2376 non-null int64
overall_rating_home_player_9     2376 non-null float64
player_api_id_home_player_10     2376 non-null int64
overall_rating_home_player_10    2376 non-null float64
player_api_id_home_player_11     2376 non-null int64
overall_rating_home_player_11    2376 non-null float64
player_api_id_away_player_1      2376 non-null int64
overall_rating_away_player_1     2376 non-null float64
player_api_id_away_player_2      2376 non-null int64
overall_rating_away_player_2     2376 non-null float64
player_api_id_away_player_3      2376 non-null int64
overall_rating_away_player_3     2374 non-null float64
player_api_id_away_player_4      2376 non-null int64
overall_rating_away_player_4     2375 non-null float64
player_api_id_away_player_5      2376 non-null int64
overall_rating_away_player_5     2376 non-null float64
player_api_id_away_player_6      2376 non-null int64
overall_rating_away_player_6     2376 non-null float64
player_api_id_away_player_7      2376 non-null int64
overall_rating_away_player_7     2376 non-null float64
player_api_id_away_player_8      2376 non-null int64
overall_rating_away_player_8     2376 non-null float64
player_api_id_away_player_9      2376 non-null int64
overall_rating_away_player_9     2376 non-null float64
player_api_id_away_player_10     2376 non-null int64
overall_rating_away_player_10    2376 non-null float64
player_api_id_away_player_11     2376 non-null int64
overall_rating_away_player_11    2376 non-null float64
dtypes: datetime64[ns](1), float64(119), int64(64), object(24)
memory usage: 3.8+ MB
In [186]:
bundesliga_clean.rename(columns={'overall_rating': 'overall_rating_home_player_1'}, inplace=True)
In [191]:
home_players_ratings= ["overall_rating_home_player_" + str(x) for x in range(1, 12)]
away_players_ratings = ["overall_rating_away_player_" + str(x) for x in range(1, 12)]
In [192]:
home_players_ratings
Out[192]:
['overall_rating_home_player_1',
 'overall_rating_home_player_2',
 'overall_rating_home_player_3',
 'overall_rating_home_player_4',
 'overall_rating_home_player_5',
 'overall_rating_home_player_6',
 'overall_rating_home_player_7',
 'overall_rating_home_player_8',
 'overall_rating_home_player_9',
 'overall_rating_home_player_10',
 'overall_rating_home_player_11']

Step 2 and 3

In [197]:
bundesliga_clean['home_team_rating_avg'] = bundesliga_clean[home_players_ratings].mean(axis=1)

bundesliga_clean['away_team_rating_avg'] = bundesliga_clean[away_players_ratings].mean(axis=1)

bundesliga_clean['home_team_rating_std'] = bundesliga_clean[home_players_ratings].std(axis=1)

bundesliga_clean['away_team_rating_std'] = bundesliga_clean[away_players_ratings].std(axis=1)

Step 4

In [201]:
bundesliga_clean.tail()
Out[201]:
id country_id league_id season stage date match_api_id home_team_api_id away_team_api_id home_team_goal away_team_goal home_player_X1 home_player_X2 home_player_X3 home_player_X4 home_player_X5 home_player_X6 home_player_X7 home_player_X8 home_player_X9 home_player_X10 home_player_X11 away_player_X1 away_player_X2 away_player_X3 away_player_X4 away_player_X5 away_player_X6 away_player_X7 away_player_X8 away_player_X9 away_player_X10 away_player_X11 home_player_Y1 home_player_Y2 home_player_Y3 home_player_Y4 home_player_Y5 home_player_Y6 home_player_Y7 home_player_Y8 home_player_Y9 home_player_Y10 home_player_Y11 away_player_Y1 away_player_Y2 away_player_Y3 away_player_Y4 away_player_Y5 away_player_Y6 away_player_Y7 away_player_Y8 away_player_Y9 away_player_Y10 away_player_Y11 home_player_1 home_player_2 home_player_3 home_player_4 home_player_5 home_player_6 home_player_7 home_player_8 home_player_9 home_player_10 home_player_11 away_player_1 away_player_2 away_player_3 away_player_4 away_player_5 away_player_6 away_player_7 away_player_8 away_player_9 away_player_10 away_player_11 goal shoton shotoff foulcommit card cross corner possession B365H B365D B365A BWH BWD BWA IWH IWD IWA LBH LBD LBA PSH PSD PSA WHH WHD WHA SJH SJD SJA VCH VCD VCA GBH GBD GBA BSH BSD BSA id.1 country_id.1 name id.2 name.1 id.3 team_api_id team_fifa_api_id team_long_name team_short_name id.4 team_api_id.1 team_fifa_api_id.1 team_long_name.1 team_short_name.1 Season Country League Div HomeTeam AwayTeam FTHG FTAG FTR HTHG HTAG HTR Attendance Referee HS AS HST AST HHW AHW HC AC HF AF HFKC AFKC HO AO HY AY HR AR HBP ABP player_api_id overall_rating_home_player_1 player_api_id_home_player_2 overall_rating_home_player_2 player_api_id_home_player_3 overall_rating_home_player_3 player_api_id_home_player_4 overall_rating_home_player_4 player_api_id_home_player_5 overall_rating_home_player_5 player_api_id_home_player_6 overall_rating_home_player_6 player_api_id_home_player_7 overall_rating_home_player_7 player_api_id_home_player_8 overall_rating_home_player_8 player_api_id_home_player_9 overall_rating_home_player_9 player_api_id_home_player_10 overall_rating_home_player_10 player_api_id_home_player_11 overall_rating_home_player_11 player_api_id_away_player_1 overall_rating_away_player_1 player_api_id_away_player_2 overall_rating_away_player_2 player_api_id_away_player_3 overall_rating_away_player_3 player_api_id_away_player_4 overall_rating_away_player_4 player_api_id_away_player_5 overall_rating_away_player_5 player_api_id_away_player_6 overall_rating_away_player_6 player_api_id_away_player_7 overall_rating_away_player_7 player_api_id_away_player_8 overall_rating_away_player_8 player_api_id_away_player_9 overall_rating_away_player_9 player_api_id_away_player_10 overall_rating_away_player_10 player_api_id_away_player_11 overall_rating_away_player_11 home_team_rating_avg away_team_rating_avg home_team_rating_std away_team_rating_std
2371 10197 7809 7809 2015/2016 34 2016-05-14 2002490 8721 10269 3 1 1.0 2.0 4.0 6.0 8.0 4.0 6.0 3.0 5.0 7.0 5.0 1.0 2.0 4.0 6.0 8.0 4.0 6.0 3.0 5.0 7.0 5.0 1.0 3.0 3.0 3.0 3.0 6.0 6.0 8.0 8.0 8.0 11.0 1.0 3.0 3.0 3.0 3.0 6.0 6.0 8.0 8.0 8.0 11.0 170322 40193 28480 38432 37317 520342 161421 188498 298915 58346 178812 69149 182893 97734 514301 47547 182892 27324 450980 141145 281012 107717 <goal><value><comment>n</comment><stats><goals... <shoton><value><stats><blocked>1</blocked></st... <shotoff><value><stats><shotoff>1</shotoff></s... <foulcommit><value><stats><foulscommitted>1</f... <card><value><comment>y</comment><stats><ycard... <cross><value><stats><crosses>1</crosses></sta... <corner><value><stats><corners>1</corners></st... <possession><value><comment>58</comment><stats... 2.30 4.00 2.75 2.35 3.8 2.60 2.50 3.5 2.5 2.25 3.8 2.75 2.34 4.10 2.86 2.45 3.60 2.6 NaN NaN NaN 2.38 4.1 2.7 NaN NaN NaN NaN NaN NaN 7809 7809 Germany 1. Bundesliga 7809 Germany 15623 8721 175.0 VfL Wolfsburg WOL 15632 10269 36.0 VfB Stuttgart STU 2015/2016 Germany Bundesliga 1 D1 Wolfsburg Stuttgart 3 1 H 2 0 H NaN NaN 17.0 13.0 7.0 6.0 NaN NaN 7.0 9.0 8.0 12.0 NaN NaN NaN NaN 2.0 2.0 0.0 0.0 NaN NaN 170322 74.0 40193 80.0 28480 84.0 38432 80.0 37317 75.0 520342 59.0 161421 79.0 188498 78.0 298915 77.0 58346 81.0 178812 79.0 69149 74.0 182893 66.0 97734 74.0 514301 68.0 47547 78.0 182892 74.0 27324 78.0 450980 74.0 141145 79.0 281012 79.0 107717 73.0 76.909091 74.272727 6.549115 4.268276
2372 10199 7809 7809 2015/2016 34 2016-05-14 2002492 8697 9810 1 0 1.0 2.0 4.0 6.0 8.0 5.0 2.0 4.0 6.0 8.0 5.0 1.0 2.0 4.0 6.0 8.0 3.0 5.0 7.0 4.0 6.0 5.0 1.0 3.0 3.0 3.0 3.0 6.0 8.0 8.0 8.0 8.0 11.0 1.0 3.0 3.0 3.0 3.0 6.0 6.0 6.0 8.0 8.0 11.0 177953 107588 205893 193866 196205 617044 469764 35989 42860 602523 25366 66757 668362 18904 27475 155534 30530 167094 28081 38647 27155 170775 <goal><value><comment>n</comment><stats><goals... <shoton><value><stats><shoton>1</shoton></stat... <shotoff><value><stats><shotoff>1</shotoff></s... <foulcommit><value><stats><foulscommitted>1</f... <card><value><comment>y</comment><stats><ycard... <cross><value><stats><crosses>1</crosses></sta... <corner><value><stats><corners>1</corners></st... <possession><value><comment>51</comment><stats... 2.00 3.75 3.50 2.00 3.7 3.30 2.10 3.3 3.3 1.91 3.6 3.60 1.99 3.83 3.89 2.00 3.75 3.1 NaN NaN NaN 2.00 3.8 3.6 NaN NaN NaN NaN NaN NaN 7809 7809 Germany 1. Bundesliga 7809 Germany 15628 8697 38.0 SV Werder Bremen WBR 15625 9810 1824.0 Eintracht Frankfurt EFR 2015/2016 Germany Bundesliga 1 D1 Werder Bremen Ein Frankfurt 1 0 H 0 0 D NaN NaN 14.0 4.0 3.0 2.0 NaN NaN 6.0 4.0 17.0 12.0 NaN NaN NaN NaN 4.0 2.0 0.0 0.0 NaN NaN 177953 75.0 107588 75.0 205893 77.0 193866 77.0 196205 75.0 617044 68.0 469764 72.0 35989 74.0 42860 78.0 602523 59.0 25366 77.0 66757 75.0 668362 63.0 18904 75.0 27475 75.0 155534 75.0 30530 74.0 167094 73.0 28081 73.0 38647 76.0 27155 74.0 170775 76.0 73.363636 73.545455 5.536655 3.643175
2373 10198 7809 7809 2015/2016 34 2016-05-14 2002491 8406 9790 1 3 1.0 2.0 4.0 6.0 8.0 4.0 6.0 3.0 5.0 7.0 5.0 1.0 2.0 4.0 6.0 8.0 4.0 6.0 3.0 5.0 7.0 5.0 1.0 3.0 3.0 3.0 3.0 6.0 6.0 8.0 8.0 8.0 11.0 1.0 3.0 3.0 3.0 3.0 6.0 6.0 8.0 8.0 8.0 11.0 114737 111858 245526 29543 488298 303905 37319 114650 35997 150922 129918 94658 157252 30986 307069 240348 16300 128827 97747 198316 120845 193530 <goal><value><comment>n</comment><stats><goals... <shoton><value><stats><blocked>1</blocked></st... <shotoff><value><stats><shotoff>1</shotoff></s... <foulcommit><value><stats><foulscommitted>1</f... <card><value><comment>y</comment><stats><ycard... <cross><value><stats><crosses>1</crosses></sta... <corner><value><stats><corners>1</corners></st... <possession><value><comment>44</comment><stats... 2.00 3.50 3.80 2.00 3.5 3.50 2.00 3.3 3.6 2.00 3.5 3.60 2.02 3.70 3.94 2.00 3.60 3.2 NaN NaN NaN 2.00 3.7 3.7 NaN NaN NaN NaN NaN NaN 7809 7809 Germany 1. Bundesliga 7809 Germany 17465 8406 100409.0 FC Augsburg AUG 15618 9790 28.0 Hamburger SV HAM 2015/2016 Germany Bundesliga 1 D1 Augsburg Hamburg 1 3 A 1 1 D NaN NaN 12.0 13.0 7.0 6.0 NaN NaN 2.0 4.0 12.0 24.0 NaN NaN NaN NaN 3.0 3.0 0.0 0.0 NaN NaN 114737 77.0 111858 73.0 245526 73.0 29543 69.0 488298 70.0 303905 72.0 37319 79.0 114650 71.0 35997 75.0 150922 73.0 129918 75.0 94658 64.0 157252 72.0 30986 76.0 307069 74.0 240348 73.0 16300 72.0 128827 77.0 97747 75.0 198316 69.0 120845 72.0 193530 77.0 73.363636 72.818182 2.975659 3.816233
2374 10200 7809 7809 2015/2016 34 2016-05-14 2002493 8226 10189 1 4 1.0 3.0 5.0 7.0 2.0 4.0 6.0 8.0 3.0 5.0 7.0 1.0 2.0 4.0 6.0 8.0 5.0 2.0 4.0 6.0 8.0 5.0 1.0 3.0 3.0 3.0 7.0 7.0 7.0 7.0 10.0 10.0 10.0 1.0 3.0 3.0 3.0 3.0 6.0 8.0 8.0 8.0 8.0 11.0 97746 189982 177942 303914 212156 119525 34267 27866 212819 173461 212893 49586 68253 171698 145551 304345 237542 530859 425963 95082 179511 36784 <goal><value><comment>n</comment><stats><goals... <shoton><value><stats><shoton>1</shoton></stat... <shotoff><value><stats><shotoff>1</shotoff></s... <foulcommit><value><stats><foulscommitted>1</f... <card><value><comment>y</comment><stats><ycard... <cross><value><stats><crosses>1</crosses></sta... <corner><value><stats><corners>1</corners></st... <possession><value><comment>51</comment><stats... 3.20 3.80 2.05 2.90 3.9 2.15 3.00 3.6 2.1 3.00 3.8 2.15 3.09 4.06 2.22 2.88 3.75 2.1 NaN NaN NaN 3.00 3.9 2.2 NaN NaN NaN NaN NaN NaN 7809 7809 Germany 1. Bundesliga 7809 Germany 15630 8226 10029.0 TSG 1899 Hoffenheim HOF 15621 10189 34.0 FC Schalke 04 S04 2015/2016 Germany Bundesliga 1 D1 Hoffenheim Schalke 04 1 4 A 1 2 A NaN NaN 14.0 12.0 4.0 8.0 NaN NaN 7.0 2.0 15.0 11.0 NaN NaN NaN NaN 1.0 1.0 0.0 0.0 NaN NaN 97746 70.0 189982 77.0 177942 76.0 303914 74.0 212156 74.0 119525 76.0 34267 77.0 27866 74.0 212819 74.0 173461 74.0 212893 80.0 49586 83.0 68253 83.0 171698 81.0 145551 74.0 304345 74.0 237542 79.0 530859 76.0 425963 79.0 95082 77.0 179511 78.0 36784 81.0 75.090909 78.636364 2.547726 3.202272
2375 10201 7809 7809 2015/2016 34 2016-05-14 2002494 9905 8177 0 0 1.0 2.0 4.0 6.0 8.0 4.0 6.0 3.0 5.0 7.0 5.0 1.0 2.0 4.0 6.0 8.0 4.0 6.0 3.0 5.0 7.0 5.0 1.0 3.0 3.0 3.0 3.0 6.0 6.0 8.0 8.0 8.0 11.0 1.0 3.0 3.0 3.0 3.0 6.0 6.0 8.0 8.0 8.0 11.0 287894 191080 193901 36000 426873 59595 95228 178804 278863 176953 291425 40094 12330 95081 278831 229759 425962 42297 298823 196311 91984 31906 <goal /> <shoton><value><stats><shoton>1</shoton></stat... <shotoff><value><stats><shotoff>1</shotoff></s... <foulcommit><value><stats><foulscommitted>1</f... <card><value><comment>y</comment><stats><ycard... <cross><value><stats><crosses>1</crosses></sta... <corner><value><stats><corners>1</corners></st... <possession><value><comment>40</comment><stats... 2.05 3.60 3.50 2.05 3.6 3.25 1.85 3.5 3.9 2.05 3.4 3.50 2.09 3.65 3.73 2.10 3.40 3.1 NaN NaN NaN 2.10 3.6 3.5 NaN NaN NaN NaN NaN NaN 7809 7809 Germany 1. Bundesliga 7809 Germany 16243 9905 169.0 1. FSV Mainz 05 MAI 15626 8177 166.0 Hertha BSC Berlin HBE 2015/2016 Germany Bundesliga 1 D1 Mainz Hertha 0 0 D 0 0 D NaN NaN 7.0 11.0 3.0 5.0 NaN NaN 2.0 2.0 12.0 20.0 NaN NaN NaN NaN 3.0 3.0 0.0 1.0 NaN NaN 287894 80.0 191080 74.0 193901 76.0 36000 76.0 426873 73.0 59595 77.0 95228 75.0 178804 75.0 278863 78.0 176953 68.0 291425 75.0 40094 76.0 12330 76.0 95081 77.0 278831 77.0 229759 76.0 425962 72.0 42297 75.0 298823 72.0 196311 78.0 91984 76.0 31906 78.0 75.181818 75.727273 3.060006 2.053821
In [199]:
bundesliga_clean.describe()
Out[199]:
id country_id league_id stage match_api_id home_team_api_id away_team_api_id home_team_goal away_team_goal home_player_X1 home_player_X2 home_player_X3 home_player_X4 home_player_X5 home_player_X6 home_player_X7 home_player_X8 home_player_X9 home_player_X10 home_player_X11 away_player_X1 away_player_X2 away_player_X3 away_player_X4 away_player_X5 away_player_X6 away_player_X7 away_player_X8 away_player_X9 away_player_X10 away_player_X11 home_player_Y1 home_player_Y2 home_player_Y3 home_player_Y4 home_player_Y5 home_player_Y6 home_player_Y7 home_player_Y8 home_player_Y9 home_player_Y10 home_player_Y11 away_player_Y1 away_player_Y2 away_player_Y3 away_player_Y4 away_player_Y5 away_player_Y6 away_player_Y7 away_player_Y8 away_player_Y9 away_player_Y10 away_player_Y11 home_player_1 home_player_2 home_player_3 home_player_4 home_player_5 home_player_6 home_player_7 home_player_8 home_player_9 home_player_10 home_player_11 away_player_1 away_player_2 away_player_3 away_player_4 away_player_5 away_player_6 away_player_7 away_player_8 away_player_9 away_player_10 away_player_11 B365H B365D B365A BWH BWD BWA IWH IWD IWA LBH LBD LBA PSH PSD PSA WHH WHD WHA SJH SJD SJA VCH VCD VCA GBH GBD GBA BSH BSD BSA id.1 country_id.1 id.2 id.3 team_api_id team_fifa_api_id id.4 team_api_id.1 team_fifa_api_id.1 FTHG FTAG HTHG HTAG Attendance HS AS HST AST HHW AHW HC AC HF AF HFKC AFKC HO AO HY AY HR AR HBP ABP player_api_id overall_rating_home_player_1 player_api_id_home_player_2 overall_rating_home_player_2 player_api_id_home_player_3 overall_rating_home_player_3 player_api_id_home_player_4 overall_rating_home_player_4 player_api_id_home_player_5 overall_rating_home_player_5 player_api_id_home_player_6 overall_rating_home_player_6 player_api_id_home_player_7 overall_rating_home_player_7 player_api_id_home_player_8 overall_rating_home_player_8 player_api_id_home_player_9 overall_rating_home_player_9 player_api_id_home_player_10 overall_rating_home_player_10 player_api_id_home_player_11 overall_rating_home_player_11 player_api_id_away_player_1 overall_rating_away_player_1 player_api_id_away_player_2 overall_rating_away_player_2 player_api_id_away_player_3 overall_rating_away_player_3 player_api_id_away_player_4 overall_rating_away_player_4 player_api_id_away_player_5 overall_rating_away_player_5 player_api_id_away_player_6 overall_rating_away_player_6 player_api_id_away_player_7 overall_rating_away_player_7 player_api_id_away_player_8 overall_rating_away_player_8 player_api_id_away_player_9 overall_rating_away_player_9 player_api_id_away_player_10 overall_rating_away_player_10 player_api_id_away_player_11 overall_rating_away_player_11 home_team_rating_avg away_team_rating_avg home_team_rating_std away_team_rating_std
count 2376.000000 2376.0 2376.0 2376.000000 2.376000e+03 2376.000000 2376.000000 2376.000000 2376.000000 2376.0 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.0 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2374.000000 2376.0 2376.0 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.0 2376.0 2376.0 2376.0 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2374.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2375.000000 2375.000000 2375.000000 2375.000000 2375.000000 2375.000000 2370.000000 2370.000000 2370.000000 2375.000000 2375.000000 2375.000000 1223.000000 1223.000000 1223.000000 2375.000000 2375.000000 2375.000000 1788.000000 1788.000000 1788.000000 2375.000000 2375.000000 2375.000000 1456.000000 1456.000000 1456.000000 1456.000000 1456.000000 1456.000000 2376.0 2376.0 2376.0 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 0.0 2376.000000 2376.000000 2376.000000 2376.000000 0.0 0.0 2376.000000 2376.000000 2376.000000 2376.000000 0.0 0.0 0.0 0.0 2376.000000 2376.000000 2376.000000 2376.000000 0.0 0.0 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2374.000000 2376.000000 2375.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2374.000000 2376.000000 2375.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000 2376.000000
mean 9063.765572 7809.0 7809.0 17.566919 1.209314e+06 9176.439394 9179.763047 1.630051 1.273990 1.0 2.029040 4.034512 5.995791 7.877946 3.898148 4.978114 4.208333 5.790404 5.709175 5.497054 1.0 2.040825 4.038721 5.997896 7.848485 3.937290 4.934343 4.209175 5.773990 5.748737 5.497051 1.0 3.0 3.000842 3.001684 3.059764 5.975168 6.412458 7.462542 7.955387 8.985690 10.668350 1.0 3.0 3.0 3.0 3.063552 5.957492 6.424663 7.468013 7.955808 8.948232 10.673547 76086.440657 86050.823232 82601.455808 85118.732744 107796.308081 86519.975168 88387.332071 99255.951178 102938.735269 93417.502946 79797.247896 76300.581650 85818.751263 82826.484007 84521.853956 107325.513047 90217.930135 85952.926347 101045.552189 105192.644360 92990.344697 81511.360269 2.598417 3.923558 4.388611 2.544034 3.878594 4.112531 2.461743 3.666287 4.009046 2.536383 3.833752 4.284598 2.899665 4.345061 4.935053 2.577701 3.737912 4.312998 2.476532 3.832293 4.339636 2.640835 4.023928 4.578424 2.441003 3.703853 4.104293 2.432946 3.700639 4.135316 7809.0 7809.0 7809.0 15939.386364 9176.439394 8351.779461 15940.432660 9179.763047 8354.908670 1.630051 1.273990 0.724327 0.557660 NaN 14.409512 11.671717 5.255471 4.230219 NaN NaN 5.551347 4.313131 15.439815 16.524411 NaN NaN NaN NaN 1.625000 1.959175 0.077441 0.101010 NaN NaN 76086.440657 76.781145 86050.823232 72.866582 82601.455808 74.771272 85118.732744 74.940632 107796.308081 72.860690 86519.975168 74.726431 88387.332071 74.555556 99255.951178 74.597222 102938.735269 75.561869 93417.502946 75.308081 79797.247896 76.327862 76300.581650 76.793350 85818.751263 72.909512 82826.484007 74.657961 84521.853956 74.895579 107325.513047 72.864057 90217.930135 74.473485 85952.926347 74.435185 101045.552189 74.419613 105192.644360 75.384259 92990.344697 75.312710 81511.360269 76.183081 74.845030 74.756998 3.486843 3.518296
std 693.242883 0.0 0.0 9.804432 4.832681e+05 784.392986 785.869660 1.339570 1.196597 0.0 0.285064 0.326493 0.353007 0.791695 1.004275 1.353492 1.754618 1.528621 1.515956 0.605928 0.0 0.380050 0.356850 0.397354 0.859732 1.040173 1.389549 1.757395 1.506426 1.524674 0.605314 0.0 0.0 0.041030 0.058014 0.473070 0.710088 0.736933 0.609630 0.790808 1.178315 0.470905 0.0 0.0 0.0 0.0 0.473910 0.723939 0.734278 0.605090 0.801147 1.192014 0.469014 75643.257469 96867.997463 95190.650675 92785.897388 115994.606142 93132.524337 97032.247759 99155.738986 102332.720969 96413.839643 81641.183830 76377.846039 97453.084973 96961.348539 91472.726321 112681.564873 99286.393680 93857.284748 100038.946189 104532.756483 95936.665195 81963.145685 1.764488 1.103474 3.559465 1.547642 1.053925 2.952773 1.389530 0.774558 2.709095 1.676220 1.014809 3.519767 2.429187 1.635692 4.977544 1.712101 0.909614 3.523519 1.436304 0.836876 3.225233 1.881344 1.206249 4.239487 1.270556 0.735097 2.521312 1.299168 0.721041 2.640136 0.0 0.0 0.0 784.747077 784.392986 27123.204305 785.129526 785.869660 27122.973146 1.339570 1.196597 0.848636 0.722015 NaN 5.213204 4.578482 2.626178 2.373633 NaN NaN 2.952233 2.459528 4.467209 4.711669 NaN NaN NaN NaN 1.176771 1.251364 0.281164 0.317727 NaN NaN 75643.257469 5.114034 96867.997463 4.546495 95190.650675 4.578519 92785.897388 4.442587 115994.606142 4.328553 93132.524337 4.518508 97032.247759 4.784126 99155.738986 4.847291 102332.720969 4.870141 96413.839643 5.048001 81641.183830 4.661041 76377.846039 5.149043 97453.084973 4.642665 96961.348539 4.575087 91472.726321 4.520481 112681.564873 4.265163 99286.393680 4.595757 93857.284748 4.763281 100038.946189 4.853329 104532.756483 4.889696 95936.665195 5.057258 81963.145685 4.699983 3.331617 3.311063 1.223047 1.278041
min 7809.000000 7809.0 7809.0 1.000000 4.993170e+05 8152.000000 8152.000000 0.000000 0.000000 1.0 1.000000 2.000000 2.000000 1.000000 1.000000 2.000000 1.000000 1.000000 3.000000 3.000000 1.0 1.000000 2.000000 2.000000 1.000000 1.000000 1.000000 2.000000 2.000000 2.000000 3.000000 1.0 3.0 3.000000 3.000000 3.000000 3.000000 3.000000 3.000000 6.000000 6.000000 10.000000 1.0 3.0 3.0 3.0 3.000000 3.000000 3.000000 3.000000 6.000000 6.000000 10.000000 5440.000000 9079.000000 8932.000000 8932.000000 9079.000000 10967.000000 10967.000000 2862.000000 10967.000000 2862.000000 2862.000000 5440.000000 9079.000000 8932.000000 10950.000000 9079.000000 10967.000000 10967.000000 10967.000000 2862.000000 2862.000000 2862.000000 1.060000 3.000000 1.170000 1.060000 3.000000 1.170000 1.070000 3.000000 1.200000 1.070000 3.000000 1.160000 1.070000 3.060000 1.170000 1.080000 1.020000 1.150000 1.060000 3.000000 1.200000 1.060000 3.000000 1.150000 1.110000 3.100000 1.200000 1.110000 3.200000 1.200000 7809.0 7809.0 7809.0 15617.000000 8152.000000 21.000000 15617.000000 8152.000000 21.000000 0.000000 0.000000 0.000000 0.000000 NaN 1.000000 0.000000 0.000000 0.000000 NaN NaN 0.000000 0.000000 3.000000 1.000000 NaN NaN NaN NaN 0.000000 0.000000 0.000000 0.000000 NaN NaN 5440.000000 54.000000 9079.000000 51.000000 8932.000000 52.000000 8932.000000 58.000000 9079.000000 52.000000 10967.000000 46.000000 10967.000000 56.000000 2862.000000 54.000000 10967.000000 57.000000 2862.000000 57.000000 2862.000000 57.000000 5440.000000 58.000000 9079.000000 48.000000 8932.000000 48.000000 10950.000000 51.000000 9079.000000 52.000000 10967.000000 46.000000 10967.000000 54.000000 10967.000000 54.000000 2862.000000 54.000000 2862.000000 58.000000 2862.000000 58.000000 67.272727 66.454545 0.924416 0.904534
25% 8471.750000 7809.0 7809.0 9.000000 8.569248e+05 8358.000000 8358.000000 1.000000 0.000000 1.0 2.000000 4.000000 6.000000 8.000000 4.000000 4.000000 3.000000 5.000000 4.000000 5.000000 1.0 2.000000 4.000000 6.000000 8.000000 4.000000 4.000000 3.000000 5.000000 4.000000 5.000000 1.0 3.0 3.000000 3.000000 3.000000 6.000000 6.000000 7.000000 7.000000 8.000000 10.000000 1.0 3.0 3.0 3.0 3.000000 6.000000 6.000000 7.000000 7.000000 8.000000 10.000000 27424.000000 30434.000000 30663.250000 27475.000000 30894.000000 29812.000000 30530.000000 30838.500000 31235.000000 30821.000000 31199.000000 27424.000000 30434.000000 29640.500000 27475.000000 30894.000000 30530.000000 29812.000000 30776.000000 31244.000000 30854.000000 31199.000000 1.700000 3.400000 2.500000 1.720000 3.300000 2.500000 1.700000 3.300000 2.500000 1.670000 3.300000 2.500000 1.770000 3.545000 2.605000 1.730000 3.250000 2.500000 1.670000 3.400000 2.500000 1.730000 3.400000 2.500000 1.700000 3.300000 2.500000 1.670000 3.300000 2.500000 7809.0 7809.0 7809.0 15621.000000 8358.000000 28.000000 15621.000000 8358.000000 28.000000 1.000000 0.000000 0.000000 0.000000 NaN 11.000000 8.000000 3.000000 2.000000 NaN NaN 3.000000 3.000000 12.000000 13.000000 NaN NaN NaN NaN 1.000000 1.000000 0.000000 0.000000 NaN NaN 27424.000000 74.000000 30434.000000 70.000000 30663.250000 72.000000 27475.000000 72.000000 30894.000000 70.000000 29812.000000 72.000000 30530.000000 72.000000 30838.500000 72.000000 31235.000000 73.000000 30821.000000 72.000000 31199.000000 73.000000 27424.000000 74.000000 30434.000000 70.000000 29640.500000 72.000000 27475.000000 72.000000 30894.000000 71.000000 30530.000000 72.000000 29812.000000 72.000000 30776.000000 71.000000 31244.000000 72.000000 30854.000000 72.000000 31199.000000 73.000000 72.636364 72.545455 2.583162 2.567275
50% 9068.500000 7809.0 7809.0 18.000000 1.239502e+06 9788.000000 9788.000000 1.000000 1.000000 1.0 2.000000 4.000000 6.000000 8.000000 4.000000 6.000000 3.000000 5.000000 6.000000 5.000000 1.0 2.000000 4.000000 6.000000 8.000000 4.000000 6.000000 3.000000 5.000000 6.000000 5.000000 1.0 3.0 3.000000 3.000000 3.000000 6.000000 6.000000 8.000000 8.000000 8.000000 11.000000 1.0 3.0 3.0 3.0 3.000000 6.000000 6.000000 8.000000 8.000000 8.000000 11.000000 36147.000000 37357.000000 37410.000000 36806.000000 43061.000000 37357.000000 37292.000000 40954.000000 40605.000000 39840.000000 38848.000000 36411.000000 37357.000000 37380.000000 36806.000000 43061.000000 37374.000000 37087.000000 40193.000000 42208.000000 39847.000000 39141.000000 2.150000 3.500000 3.300000 2.150000 3.500000 3.250000 2.100000 3.400000 3.200000 2.100000 3.500000 3.250000 2.220000 3.730000 3.440000 2.150000 3.400000 3.250000 2.100000 3.600000 3.400000 2.150000 3.600000 3.400000 2.100000 3.400000 3.300000 2.100000 3.400000 3.300000 7809.0 7809.0 7809.0 15626.000000 9788.000000 38.000000 15626.000000 9788.000000 38.000000 1.000000 1.000000 1.000000 0.000000 NaN 14.000000 11.000000 5.000000 4.000000 NaN NaN 5.000000 4.000000 15.000000 16.000000 NaN NaN NaN NaN 1.000000 2.000000 0.000000 0.000000 NaN NaN 36147.000000 77.000000 37357.000000 73.000000 37410.000000 74.000000 36806.000000 75.000000 43061.000000 73.000000 37357.000000 75.000000 37292.000000 74.000000 40954.000000 75.000000 40605.000000 76.000000 39840.000000 75.000000 38848.000000 76.000000 36411.000000 77.000000 37357.000000 73.000000 37380.000000 74.000000 36806.000000 75.000000 43061.000000 73.000000 37374.000000 75.000000 37087.000000 74.000000 40193.000000 74.000000 42208.000000 75.000000 39847.000000 75.000000 39141.000000 76.000000 74.545455 74.454545 3.289100 3.286335
75% 9662.250000 7809.0 7809.0 26.000000 1.732728e+06 9823.000000 9823.000000 2.000000 2.000000 1.0 2.000000 4.000000 6.000000 8.000000 4.000000 6.000000 6.000000 8.000000 7.000000 6.000000 1.0 2.000000 4.000000 6.000000 8.000000 4.000000 6.000000 6.000000 8.000000 7.000000 6.000000 1.0 3.0 3.000000 3.000000 3.000000 6.000000 7.000000 8.000000 8.000000 10.000000 11.000000 1.0 3.0 3.0 3.0 3.000000 6.000000 7.000000 8.000000 8.000000 10.000000 11.000000 112978.000000 116645.000000 97491.000000 114025.000000 155534.000000 132843.000000 134217.000000 163670.000000 144993.000000 140892.750000 95094.000000 112978.000000 114025.000000 97491.000000 109615.000000 155534.000000 134217.000000 131211.000000 166452.000000 157729.000000 129944.000000 103775.750000 2.750000 4.000000 4.750000 2.700000 3.900000 4.600000 2.600000 3.700000 4.500000 2.700000 3.800000 4.750000 2.870000 4.375000 4.920000 2.700000 3.800000 4.800000 2.630000 3.900000 5.000000 2.750000 4.000000 5.000000 2.700000 3.750000 4.750000 2.700000 3.750000 4.750000 7809.0 7809.0 7809.0 15632.000000 9823.000000 175.000000 15632.000000 9823.000000 175.000000 2.000000 2.000000 1.000000 1.000000 NaN 18.000000 15.000000 7.000000 6.000000 NaN NaN 7.000000 6.000000 18.000000 20.000000 NaN NaN NaN NaN 2.000000 3.000000 0.000000 0.000000 NaN NaN 112978.000000 80.000000 116645.000000 75.000000 97491.000000 78.000000 114025.000000 77.000000 155534.000000 75.000000 132843.000000 77.000000 134217.000000 77.000000 163670.000000 77.000000 144993.000000 78.000000 140892.750000 78.000000 95094.000000 79.000000 112978.000000 80.000000 114025.000000 75.000000 97491.000000 78.000000 109615.000000 77.000000 155534.000000 75.000000 134217.000000 77.000000 131211.000000 77.000000 166452.000000 77.000000 157729.000000 78.000000 129944.000000 78.000000 103775.750000 79.000000 76.818182 76.727273 4.229765 4.276787
max 10256.000000 7809.0 7809.0 34.000000 2.002495e+06 10269.000000 10269.000000 9.000000 8.000000 1.0 8.000000 8.000000 8.000000 8.000000 9.000000 9.000000 9.000000 9.000000 9.000000 7.000000 1.0 8.000000 8.000000 8.000000 9.000000 9.000000 8.000000 8.000000 9.000000 9.000000 7.000000 1.0 3.0 5.000000 5.000000 8.000000 8.000000 9.000000 9.000000 10.000000 11.000000 11.000000 1.0 3.0 3.0 3.0 7.000000 8.000000 9.000000 9.000000 11.000000 11.000000 11.000000 448805.000000 748432.000000 664970.000000 664970.000000 681383.000000 617044.000000 667790.000000 692973.000000 664585.000000 692973.000000 614212.000000 448805.000000 748432.000000 681383.000000 553555.000000 681383.000000 667787.000000 667790.000000 692973.000000 688295.000000 688295.000000 688295.000000 19.000000 15.000000 51.000000 16.000000 12.500000 34.000000 13.000000 9.500000 22.000000 17.000000 12.000000 51.000000 22.300000 15.760000 41.000000 19.000000 10.000000 34.000000 17.000000 10.000000 34.000000 21.000000 13.000000 51.000000 13.000000 9.250000 18.000000 13.000000 8.500000 21.000000 7809.0 7809.0 7809.0 19917.000000 10269.000000 111239.000000 19917.000000 10269.000000 111239.000000 9.000000 8.000000 5.000000 5.000000 NaN 36.000000 33.000000 15.000000 14.000000 NaN NaN 20.000000 14.000000 32.000000 34.000000 NaN NaN NaN NaN 6.000000 7.000000 2.000000 3.000000 NaN NaN 448805.000000 90.000000 748432.000000 87.000000 664970.000000 87.000000 664970.000000 87.000000 681383.000000 90.000000 617044.000000 88.000000 667790.000000 90.000000 692973.000000 90.000000 664585.000000 90.000000 692973.000000 90.000000 614212.000000 88.000000 448805.000000 90.000000 748432.000000 87.000000 681383.000000 87.000000 553555.000000 87.000000 681383.000000 88.000000 667787.000000 88.000000 667790.000000 90.000000 692973.000000 90.000000 688295.000000 90.000000 688295.000000 90.000000 688295.000000 88.000000 86.090909 85.818182 9.633276 11.550679
In [205]:
bundesliga_clean.home_team_rating_std.hist();

Distinct Section

In [160]:
mask1 = complete_bundesliga['away_player_1'].isnull() | complete_bundesliga['away_player_2'].isnull() | complete_bundesliga['away_player_3'].isnull() | complete_bundesliga['away_player_4'].isnull() | complete_bundesliga['away_player_5'].isnull() | complete_bundesliga['away_player_6'].isnull() | complete_bundesliga['away_player_7'].isnull() | complete_bundesliga['away_player_8'].isnull() | complete_bundesliga['away_player_9'].isnull() | complete_bundesliga['away_player_10'].isnull()| complete_bundesliga['away_player_11'].isnull() | complete_bundesliga['home_player_1'].isnull()| complete_bundesliga['home_player_2'].isnull() | complete_bundesliga['home_player_3'].isnull()| complete_bundesliga['home_player_4'].isnull() | complete_bundesliga['home_player_5'].isnull()| complete_bundesliga['home_player_6'].isnull() | complete_bundesliga['home_player_7'].isnull()| complete_bundesliga['home_player_8'].isnull() | complete_bundesliga['home_player_9'].isnull()| complete_bundesliga['home_player_10'].isnull() | complete_bundesliga['home_player_11'].isnull()
        
matches_to_clean = complete_bundesliga[mask1]
In [161]:
#for player in players:
    matches_to_clean = complete_bundesliga[(complete_bundesliga[player].isnull())]
  File "<ipython-input-161-70023835fa47>", line 2
    matches_to_clean = complete_bundesliga[(complete_bundesliga[player].isnull())]
    ^
IndentationError: unexpected indent
In [162]:
matches_to_clean.info(verbose=True, null_counts= True)
<class 'pandas.core.frame.DataFrame'>
Int64Index: 72 entries, 2 to 865
Data columns (total 164 columns):
id                    72 non-null int64
country_id            72 non-null int64
league_id             72 non-null int64
season                72 non-null object
stage                 72 non-null int64
date                  72 non-null datetime64[ns]
match_api_id          72 non-null int64
home_team_api_id      72 non-null int64
away_team_api_id      72 non-null int64
home_team_goal        72 non-null int64
away_team_goal        72 non-null int64
home_player_X1        72 non-null float64
home_player_X2        72 non-null float64
home_player_X3        72 non-null float64
home_player_X4        72 non-null float64
home_player_X5        72 non-null float64
home_player_X6        72 non-null float64
home_player_X7        72 non-null float64
home_player_X8        72 non-null float64
home_player_X9        72 non-null float64
home_player_X10       72 non-null float64
home_player_X11       72 non-null float64
away_player_X1        72 non-null float64
away_player_X2        72 non-null float64
away_player_X3        72 non-null float64
away_player_X4        72 non-null float64
away_player_X5        72 non-null float64
away_player_X6        72 non-null float64
away_player_X7        72 non-null float64
away_player_X8        72 non-null float64
away_player_X9        72 non-null float64
away_player_X10       72 non-null float64
away_player_X11       72 non-null float64
home_player_Y1        72 non-null float64
home_player_Y2        72 non-null float64
home_player_Y3        72 non-null float64
home_player_Y4        72 non-null float64
home_player_Y5        72 non-null float64
home_player_Y6        72 non-null float64
home_player_Y7        72 non-null float64
home_player_Y8        72 non-null float64
home_player_Y9        72 non-null float64
home_player_Y10       72 non-null float64
home_player_Y11       72 non-null float64
away_player_Y1        72 non-null float64
away_player_Y2        72 non-null float64
away_player_Y3        72 non-null float64
away_player_Y4        72 non-null float64
away_player_Y5        72 non-null float64
away_player_Y6        72 non-null float64
away_player_Y7        72 non-null float64
away_player_Y8        72 non-null float64
away_player_Y9        72 non-null float64
away_player_Y10       72 non-null float64
away_player_Y11       72 non-null float64
home_player_1         60 non-null float64
home_player_2         70 non-null float64
home_player_3         65 non-null float64
home_player_4         69 non-null float64
home_player_5         69 non-null float64
home_player_6         67 non-null float64
home_player_7         70 non-null float64
home_player_8         69 non-null float64
home_player_9         70 non-null float64
home_player_10        68 non-null float64
home_player_11        68 non-null float64
away_player_1         60 non-null float64
away_player_2         69 non-null float64
away_player_3         69 non-null float64
away_player_4         69 non-null float64
away_player_5         68 non-null float64
away_player_6         69 non-null float64
away_player_7         68 non-null float64
away_player_8         66 non-null float64
away_player_9         70 non-null float64
away_player_10        71 non-null float64
away_player_11        70 non-null float64
goal                  72 non-null object
shoton                72 non-null object
shotoff               72 non-null object
foulcommit            72 non-null object
card                  72 non-null object
cross                 72 non-null object
corner                72 non-null object
possession            72 non-null object
B365H                 72 non-null float64
B365D                 72 non-null float64
B365A                 72 non-null float64
BWH                   72 non-null float64
BWD                   72 non-null float64
BWA                   72 non-null float64
IWH                   72 non-null float64
IWD                   72 non-null float64
IWA                   72 non-null float64
LBH                   72 non-null float64
LBD                   72 non-null float64
LBA                   72 non-null float64
PSH                   0 non-null float64
PSD                   0 non-null float64
PSA                   0 non-null float64
WHH                   72 non-null float64
WHD                   72 non-null float64
WHA                   72 non-null float64
SJH                   72 non-null float64
SJD                   72 non-null float64
SJA                   72 non-null float64
VCH                   72 non-null float64
VCD                   72 non-null float64
VCA                   72 non-null float64
GBH                   72 non-null float64
GBD                   72 non-null float64
GBA                   72 non-null float64
BSH                   72 non-null float64
BSD                   72 non-null float64
BSA                   72 non-null float64
id.1                  72 non-null int64
country_id.1          72 non-null int64
name                  72 non-null object
id.2                  72 non-null int64
name.1                72 non-null object
id.3                  72 non-null int64
team_api_id           72 non-null int64
team_fifa_api_id      72 non-null float64
team_long_name        72 non-null object
team_short_name       72 non-null object
id.4                  72 non-null int64
team_api_id.1         72 non-null int64
team_fifa_api_id.1    72 non-null float64
team_long_name.1      72 non-null object
team_short_name.1     72 non-null object
Season                72 non-null object
Country               72 non-null object
League                72 non-null object
Div                   72 non-null object
HomeTeam              72 non-null object
AwayTeam              72 non-null object
FTHG                  72 non-null int64
FTAG                  72 non-null int64
FTR                   72 non-null object
HTHG                  72 non-null int64
HTAG                  72 non-null int64
HTR                   72 non-null object
Attendance            0 non-null float64
Referee               0 non-null object
HS                    72 non-null float64
AS                    72 non-null float64
HST                   72 non-null float64
AST                   72 non-null float64
HHW                   0 non-null float64
AHW                   0 non-null float64
HC                    72 non-null float64
AC                    72 non-null float64
HF                    72 non-null float64
AF                    72 non-null float64
HFKC                  0 non-null float64
AFKC                  0 non-null float64
HO                    0 non-null float64
AO                    0 non-null float64
HY                    72 non-null float64
AY                    72 non-null float64
HR                    72 non-null float64
AR                    72 non-null float64
HBP                   0 non-null float64
ABP                   0 non-null float64
dtypes: datetime64[ns](1), float64(119), int64(20), object(24)
memory usage: 92.8+ KB
In [163]:
plt.figure(figsize=(15,15))
sns.heatmap(matches_to_clean.isnull(),yticklabels=False,cbar=False,cmap='viridis');
In [164]:
unique_players = players_ratings.drop_duplicates(subset=['player_api_id'], keep='first', inplace=False)
In [165]:
unique_players.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 11060 entries, 0 to 183968
Data columns (total 49 columns):
id                      11060 non-null int64
player_fifa_api_id      11060 non-null int64
player_api_id           11060 non-null int64
date                    11060 non-null object
overall_rating          11060 non-null float64
potential               11060 non-null float64
preferred_foot          11060 non-null object
attacking_work_rate     10520 non-null object
defensive_work_rate     11060 non-null object
crossing                11060 non-null float64
finishing               11060 non-null float64
heading_accuracy        11060 non-null float64
short_passing           11060 non-null float64
volleys                 10582 non-null float64
dribbling               11060 non-null float64
curve                   10582 non-null float64
free_kick_accuracy      11060 non-null float64
long_passing            11060 non-null float64
ball_control            11060 non-null float64
acceleration            11060 non-null float64
sprint_speed            11060 non-null float64
agility                 10582 non-null float64
reactions               11060 non-null float64
balance                 10582 non-null float64
shot_power              11060 non-null float64
jumping                 10582 non-null float64
stamina                 11060 non-null float64
strength                11060 non-null float64
long_shots              11060 non-null float64
aggression              11060 non-null float64
interceptions           11060 non-null float64
positioning             11060 non-null float64
vision                  10582 non-null float64
penalties               11060 non-null float64
marking                 11060 non-null float64
standing_tackle         11060 non-null float64
sliding_tackle          10582 non-null float64
gk_diving               11060 non-null float64
gk_handling             11060 non-null float64
gk_kicking              11060 non-null float64
gk_positioning          11060 non-null float64
gk_reflexes             11060 non-null float64
id.1                    11060 non-null int64
player_api_id.1         11060 non-null int64
player_name             11060 non-null object
player_fifa_api_id.1    11060 non-null int64
birthday                11060 non-null object
height                  11060 non-null float64
weight                  11060 non-null int64
dtypes: float64(36), int64(7), object(6)
memory usage: 4.2+ MB
In [166]:
unique_players = unique_players[['player_api_id','player_name']]
In [167]:
unique_players.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 11060 entries, 0 to 183968
Data columns (total 2 columns):
player_api_id    11060 non-null int64
player_name      11060 non-null object
dtypes: int64(1), object(1)
memory usage: 259.2+ KB
In [168]:
for player in players:
    matches_to_clean = matches_to_clean.merge(unique_players,
                                              how = 'left',
                                              left_on = [player],
                                              right_on = ["player_api_id"],
                                              suffixes = ["", "_" + player],
                                              validate="many_to_one")
In [169]:
matches_to_clean.info(verbose=True, null_counts = True)
<class 'pandas.core.frame.DataFrame'>
Int64Index: 72 entries, 0 to 71
Data columns (total 208 columns):
id                              72 non-null int64
country_id                      72 non-null int64
league_id                       72 non-null int64
season                          72 non-null object
stage                           72 non-null int64
date                            72 non-null datetime64[ns]
match_api_id                    72 non-null int64
home_team_api_id                72 non-null int64
away_team_api_id                72 non-null int64
home_team_goal                  72 non-null int64
away_team_goal                  72 non-null int64
home_player_X1                  72 non-null float64
home_player_X2                  72 non-null float64
home_player_X3                  72 non-null float64
home_player_X4                  72 non-null float64
home_player_X5                  72 non-null float64
home_player_X6                  72 non-null float64
home_player_X7                  72 non-null float64
home_player_X8                  72 non-null float64
home_player_X9                  72 non-null float64
home_player_X10                 72 non-null float64
home_player_X11                 72 non-null float64
away_player_X1                  72 non-null float64
away_player_X2                  72 non-null float64
away_player_X3                  72 non-null float64
away_player_X4                  72 non-null float64
away_player_X5                  72 non-null float64
away_player_X6                  72 non-null float64
away_player_X7                  72 non-null float64
away_player_X8                  72 non-null float64
away_player_X9                  72 non-null float64
away_player_X10                 72 non-null float64
away_player_X11                 72 non-null float64
home_player_Y1                  72 non-null float64
home_player_Y2                  72 non-null float64
home_player_Y3                  72 non-null float64
home_player_Y4                  72 non-null float64
home_player_Y5                  72 non-null float64
home_player_Y6                  72 non-null float64
home_player_Y7                  72 non-null float64
home_player_Y8                  72 non-null float64
home_player_Y9                  72 non-null float64
home_player_Y10                 72 non-null float64
home_player_Y11                 72 non-null float64
away_player_Y1                  72 non-null float64
away_player_Y2                  72 non-null float64
away_player_Y3                  72 non-null float64
away_player_Y4                  72 non-null float64
away_player_Y5                  72 non-null float64
away_player_Y6                  72 non-null float64
away_player_Y7                  72 non-null float64
away_player_Y8                  72 non-null float64
away_player_Y9                  72 non-null float64
away_player_Y10                 72 non-null float64
away_player_Y11                 72 non-null float64
home_player_1                   60 non-null float64
home_player_2                   70 non-null float64
home_player_3                   65 non-null float64
home_player_4                   69 non-null float64
home_player_5                   69 non-null float64
home_player_6                   67 non-null float64
home_player_7                   70 non-null float64
home_player_8                   69 non-null float64
home_player_9                   70 non-null float64
home_player_10                  68 non-null float64
home_player_11                  68 non-null float64
away_player_1                   60 non-null float64
away_player_2                   69 non-null float64
away_player_3                   69 non-null float64
away_player_4                   69 non-null float64
away_player_5                   68 non-null float64
away_player_6                   69 non-null float64
away_player_7                   68 non-null float64
away_player_8                   66 non-null float64
away_player_9                   70 non-null float64
away_player_10                  71 non-null float64
away_player_11                  70 non-null float64
goal                            72 non-null object
shoton                          72 non-null object
shotoff                         72 non-null object
foulcommit                      72 non-null object
card                            72 non-null object
cross                           72 non-null object
corner                          72 non-null object
possession                      72 non-null object
B365H                           72 non-null float64
B365D                           72 non-null float64
B365A                           72 non-null float64
BWH                             72 non-null float64
BWD                             72 non-null float64
BWA                             72 non-null float64
IWH                             72 non-null float64
IWD                             72 non-null float64
IWA                             72 non-null float64
LBH                             72 non-null float64
LBD                             72 non-null float64
LBA                             72 non-null float64
PSH                             0 non-null float64
PSD                             0 non-null float64
PSA                             0 non-null float64
WHH                             72 non-null float64
WHD                             72 non-null float64
WHA                             72 non-null float64
SJH                             72 non-null float64
SJD                             72 non-null float64
SJA                             72 non-null float64
VCH                             72 non-null float64
VCD                             72 non-null float64
VCA                             72 non-null float64
GBH                             72 non-null float64
GBD                             72 non-null float64
GBA                             72 non-null float64
BSH                             72 non-null float64
BSD                             72 non-null float64
BSA                             72 non-null float64
id.1                            72 non-null int64
country_id.1                    72 non-null int64
name                            72 non-null object
id.2                            72 non-null int64
name.1                          72 non-null object
id.3                            72 non-null int64
team_api_id                     72 non-null int64
team_fifa_api_id                72 non-null float64
team_long_name                  72 non-null object
team_short_name                 72 non-null object
id.4                            72 non-null int64
team_api_id.1                   72 non-null int64
team_fifa_api_id.1              72 non-null float64
team_long_name.1                72 non-null object
team_short_name.1               72 non-null object
Season                          72 non-null object
Country                         72 non-null object
League                          72 non-null object
Div                             72 non-null object
HomeTeam                        72 non-null object
AwayTeam                        72 non-null object
FTHG                            72 non-null int64
FTAG                            72 non-null int64
FTR                             72 non-null object
HTHG                            72 non-null int64
HTAG                            72 non-null int64
HTR                             72 non-null object
Attendance                      0 non-null float64
Referee                         0 non-null object
HS                              72 non-null float64
AS                              72 non-null float64
HST                             72 non-null float64
AST                             72 non-null float64
HHW                             0 non-null float64
AHW                             0 non-null float64
HC                              72 non-null float64
AC                              72 non-null float64
HF                              72 non-null float64
AF                              72 non-null float64
HFKC                            0 non-null float64
AFKC                            0 non-null float64
HO                              0 non-null float64
AO                              0 non-null float64
HY                              72 non-null float64
AY                              72 non-null float64
HR                              72 non-null float64
AR                              72 non-null float64
HBP                             0 non-null float64
ABP                             0 non-null float64
player_api_id                   60 non-null float64
player_name                     60 non-null object
player_api_id_home_player_2     70 non-null float64
player_name_home_player_2       70 non-null object
player_api_id_home_player_3     65 non-null float64
player_name_home_player_3       65 non-null object
player_api_id_home_player_4     69 non-null float64
player_name_home_player_4       69 non-null object
player_api_id_home_player_5     69 non-null float64
player_name_home_player_5       69 non-null object
player_api_id_home_player_6     67 non-null float64
player_name_home_player_6       67 non-null object
player_api_id_home_player_7     70 non-null float64
player_name_home_player_7       70 non-null object
player_api_id_home_player_8     69 non-null float64
player_name_home_player_8       69 non-null object
player_api_id_home_player_9     70 non-null float64
player_name_home_player_9       70 non-null object
player_api_id_home_player_10    68 non-null float64
player_name_home_player_10      68 non-null object
player_api_id_home_player_11    68 non-null float64
player_name_home_player_11      68 non-null object
player_api_id_away_player_1     60 non-null float64
player_name_away_player_1       60 non-null object
player_api_id_away_player_2     69 non-null float64
player_name_away_player_2       69 non-null object
player_api_id_away_player_3     69 non-null float64
player_name_away_player_3       69 non-null object
player_api_id_away_player_4     69 non-null float64
player_name_away_player_4       69 non-null object
player_api_id_away_player_5     68 non-null float64
player_name_away_player_5       68 non-null object
player_api_id_away_player_6     69 non-null float64
player_name_away_player_6       69 non-null object
player_api_id_away_player_7     68 non-null float64
player_name_away_player_7       68 non-null object
player_api_id_away_player_8     66 non-null float64
player_name_away_player_8       66 non-null object
player_api_id_away_player_9     70 non-null float64
player_name_away_player_9       70 non-null object
player_api_id_away_player_10    71 non-null float64
player_name_away_player_10      71 non-null object
player_api_id_away_player_11    70 non-null float64
player_name_away_player_11      70 non-null object
dtypes: datetime64[ns](1), float64(141), int64(20), object(46)
memory usage: 117.6+ KB
In [170]:
plt.figure(figsize=(15,15))
sns.heatmap(matches_to_clean.isnull(),yticklabels=False,cbar=False,cmap='viridis');
In [208]:
matches_to_clean['home_team_missing_values'] = matches_to_clean[home_players].isnull().sum(axis=1)

matches_to_clean['away_team_missing_values'] = matches_to_clean[away_players].isnull().sum(axis=1)
In [210]:
matches_to_clean.home_team_missing_values.value_counts()
Out[210]:
1    35
0    32
2     3
3     2
Name: home_team_missing_values, dtype: int64
In [211]:
matches_to_clean.away_team_missing_values.value_counts()
Out[211]:
0    38
1    26
2     7
3     1
Name: away_team_missing_values, dtype: int64
In [95]:
matches_to_clean.to_excel("matches_to_clean.xlsx")  # doctest: +SKIP
In [96]:
unique_players_with_ids = players_ratings.drop_duplicates(subset=['player_api_id'], keep='first', inplace=False)

unique_players_with_ids = unique_players_with_ids[['player_api_id','player_name', 'player_fifa_api_id']]
In [97]:
unique_players_with_ids.to_excel("unique_players.xlsx")  # doctest: +SKIP

Joining the relevant dataframes to combine all the relevant original features

Quality

matches table
  • Some Column names not descriptive
  • Missing values (for certain columns) (can't clean)
  • In-game events are in xml format (goal, shoton, shotoff, foulcommit, card, cross, corner, possession) WIP
  • The dates in column 'date' are strings rather than datetime format DONE
  • Missing games for the Belgium Match Season 2013/2014
  • Inconsistent data for the following Poland seasons, teams:
    • Match season 2008/2009, team Polonia Bytom 30
    • Match season 2010/2011, team Polonia Bytom 30
    • Match season 2011/2012, team Widzew Łódź 30
    • More to inspect
  • Erroneous datatypes DONE
players_ratings table
  • Missing values (for certain columns)
  • The dates in column 'date' and 'birthday' are strings rather than datetime format
  • Weight is given in lbs rather than kilograms

  • Erroneous datatypes

Tidiness

main_matches table
  • In-game events are not atomic, they should be split into respective team's events
  • Several columns are duplicated or unnecessary.